16 lines
915 B
Makefile
16 lines
915 B
Makefile
CMD = blink bsearch em encdir field forever G gitnext gitundo \
|
|
goodpasswd histogram mtrr neno off pdfman puniq ramusage rand rclean \
|
|
rn rrm shython sound-reload stdout swapout T timestamp tracefile upsidedown \
|
|
w4it-for-port-open wifi-reload wssh ytv yyyymmdd
|
|
|
|
all: blink/blink.1 bsearch/bsearch.1 encdir/encdir.1 G/G.1 gitnext/gitnext.1 gitundo/gitundo.1 goodpasswd/goodpasswd.1 histogram/histogram.1 neno/neno.1 off/off.1 pdfman/pdfman.1 puniq/puniq.1 rand/rand.1 rn/rn.1 rrm/rrm.1 shython/shython.1 sound-reload/sound-reload.1 stdout/stdout.1 timestamp/timestamp.1 tracefile/tracefile.1 T/T.1 upsidedown/upsidedown.1 wifi-reload/wifi-reload.1 wssh/wssh.1 ytv/ytv.1 yyyymmdd/yyyymmdd.1
|
|
|
|
%.1: %
|
|
pod2man $< > $@
|
|
|
|
install:
|
|
mkdir -p /usr/local/bin
|
|
parallel eval ln -sf `pwd`/*/{} /usr/local/bin/{} ::: $(CMD)
|
|
mkdir -p /usr/local/share/man/man1
|
|
parallel ln -sf `pwd`/{} /usr/local/share/man/man1/{/} ::: */*.1
|