aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Makefile
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-12-21 20:30:54 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-12-21 20:30:54 +0000
commit94f1eed72cb29867d6450763c0e251c372df489f (patch)
tree680e007f15a696e8e5152c2f15a22909761696ea /scripts/Makefile
parentoops, +cvs (diff)
downloadw3m-94f1eed72cb29867d6450763c0e251c372df489f.tar.gz
w3m-94f1eed72cb29867d6450763c0e251c372df489f.zip
[w3m-dev 02690] RC_DIR in scripts
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'scripts/Makefile')
-rw-r--r--scripts/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/Makefile b/scripts/Makefile
index 7b0bcaa..f785328 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -4,6 +4,7 @@ DESTDIR =
BIN_DIR = $(prefix)/bin
LIB_DIR = $(prefix)/lib/w3m
HELP_DIR = $(prefix)/lib/w3m
+RC_DIR = ~/.w3m
LIB_TARGETS = dirlist.cgi w3mhelp.cgi
HELP_LIBS = w3mhelp-funcname.pl w3mhelp-funcdesc.pl
@@ -24,7 +25,8 @@ all: $(LIB_TARGETS) $(HELP_LIBS)
.in:
@echo "generating $@..."
@sed -e 's%@PERL@%$(PERL)%' -e 's%@HELP_DIR@%$(HELP_DIR)%' \
- -e 's%@DOCDIRS@%$(DOCDIRS)%' $< > $@
+ -e 's%@DOCDIRS@%$(DOCDIRS)%' \
+ -e 's%@RC_DIR@%$(RC_DIR)%' $< > $@
@chmod +x $@
@echo done