aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Makefile')
-rw-r--r--scripts/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/Makefile b/scripts/Makefile
new file mode 100644
index 0000000..00ee78c
--- /dev/null
+++ b/scripts/Makefile
@@ -0,0 +1,25 @@
+
+prefix = /usr/local
+DESTDIR =
+BIN_DIR = $(prefix)/bin
+LIB_DIR = $(prefix)/lib/w3m
+
+LIB_TARGETS = dirlist.cgi
+
+INSTALL = install -c
+INSTALL_SCRIPT = $(INSTALL) -m 755
+
+PERL = /usr/local/bin/perl
+
+.SUFFIXES: .in
+
+all: $(LIB_TARGETS)
+
+.in:
+ sed 's%@PERL@%$(PERL)%' $< > $@
+
+install: $(LIB_TARGETS)
+ for file in $(LIB_TARGETS); \
+ do \
+ $(INSTALL_SCRIPT) $$file $(DISTDIR)$(LIB_DIR); \
+ done