root/branches/dev/man/Makefile.in

Revision 118, 351 bytes (checked in by dsmith, 2 years ago)

Create dev branch (currently contains experimental python plugins)

Line 
1 #Copyright (C) 2007 L. Donnie Smith
2
3 include @top_builddir@/defs.mak
4
5 DEST_MAN_DIR = $(ROOTDIR)$(mandir)
6
7 all:
8
9 install:
10         for f in `ls man?/*.?`; do \
11                 install -D -m 644 $$f $(DEST_MAN_DIR)/$$f ; \
12         done
13
14 uninstall:
15         for f in `ls man?/*.?`; do \
16                 rm -f $(DEST_MAN_DIR)/$$f ; \
17         done
18
19 distclean:
20         rm Makefile
21
22 .PHONY: all install uninstall distclean
Note: See TracBrowser for help on using the browser.