aboutsummaryrefslogblamecommitdiffstats
path: root/scripts/multipart/Makefile
blob: 8825043298b558e1a5c35e81d59fa24c5116504f (plain) (tree)
1
2
3
4
5
6
7
8

                            

                                   
                 

                             
                               




                                     
                     
 
              
 


                   

                                         





                                         
                                                                 
            
 


                            









                                                           
prefix		= /usr/local
BIN_DIR		= $(prefix)/bin
LIB_DIR		= $(prefix)/lib/w3m
DESTDIR		=
distdir		= ./distfiles

LIB_TARGETS	= multipart.cgi

INSTALL		= install -c
INSTALL_SCRIPT	= $(INSTALL) -m 755

PERL		= /usr/local/bin/perl
NKF		= nkf

.SUFFIXES: .in

all: $(LIB_TARGETS)

.in:
	sed -e 's%@PERL@%$(PERL)%g'	\
	    -e 's%@NKF@%$(NKF)%g'	\
	$< > $@
	chmod +x $@

install: $(LIB_TARGETS)
	for file in $(LIB_TARGETS);	\
	do	\
		$(INSTALL_SCRIPT) $$file $(DESTDIR)$(LIB_DIR);	\
	done

clean:
	rm -f $(LIB_TARGETS)

dist: all
	@-rm -fr $(distdir)/multipart
	mkdir -p $(distdir)/multipart
	cp Makefile README multipart.cgi multipart.cgi.in \
		$(distdir)/multipart
	( cd $(distdir); \
		 tar -cf - multipart | GZIP='' gzip ) \
		> $(distdir)/multipart.tar.gz
	-rm -fr $(distdir)/multipart