tangetools/Makefile

15 lines
632 B
Makefile
Raw Normal View History

2017-04-23 06:30:05 +00:00
CMD = blink bsearch em G gitnext goodpasswd histogram neno \
2017-04-08 20:24:07 +00:00
pdfman puniq ramusage rand rclean rn rrm T timestamp tracefile \
upsidedown wssh
2017-04-08 20:24:07 +00:00
all: blink/blink.1 bsearch/bsearch.1 G/G.1 gitnext/gitnext.1 goodpasswd/goodpasswd.1 histogram/histogram.1 neno/neno.1 pdfman/pdfman.1 puniq/puniq.1 rand/rand.1 rn/rn.1 rrm/rrm.1 timestamp/timestamp.1 tracefile/tracefile.1 T/T.1 upsidedown/upsidedown.1 wssh/wssh.1
2016-05-22 22:55:10 +00:00
%.1: %
pod2man $< > $@
2016-05-22 22:27:43 +00:00
2012-04-28 19:26:12 +00:00
install:
2014-04-16 10:24:35 +00:00
mkdir -p /usr/local/bin
2017-01-31 22:53:13 +00:00
parallel eval ln -sf `pwd`/*/{} /usr/local/bin/{} ::: $(CMD)
2014-04-16 10:24:35 +00:00
mkdir -p /usr/local/share/man/man1
2012-05-20 02:01:11 +00:00
parallel ln -sf `pwd`/{} /usr/local/share/man/man1/{/} ::: */*.1