diff options
Diffstat (limited to 'scripts/Makefile')
| -rw-r--r-- | scripts/Makefile | 4 | 
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 | 
