Makefile
changeset 1 a54c42c041e6
parent 0 b4b46fe7bf9f
child 6 04ae72a7db98
equal deleted inserted replaced
0:b4b46fe7bf9f 1:a54c42c041e6
    10 
    10 
    11 	install -m 0755 -d ${DESTDIR}/${man8dir}
    11 	install -m 0755 -d ${DESTDIR}/${man8dir}
    12 	install -m 0644 tele-watch.8.gz ${DESTDIR}/${man8dir}
    12 	install -m 0644 tele-watch.8.gz ${DESTDIR}/${man8dir}
    13 
    13 
    14 clean:
    14 clean:
    15 	-rm -f tele-watch.8.gz
    15 	-rm -f tele-watch.8.gz tele-watch
       
    16 
       
    17 %:	%.pl
       
    18 	perl -c $<
       
    19 	cp -f $< $@
       
    20 	chmod a+x-w $@
    16 
    21 
    17 %.gz:	%
    22 %.gz:	%
    18 	gzip -f $<
    23 	gzip -f $<
    19 
    24 
    20 %.8:	%
    25 %.8:	%
    21 	pod2man --section 8 $< >$@
    26 	pod2man --section 8 $< >$@
       
    27