root/man/Makefile.in

Revision 49e0132d6bb68b9d14ad8878d14a5f2ed17a1a93, 351 bytes (checked in by dsmith <dsmith@…>, 5 years ago)

merged branches/dev into trunk

git-svn-id: http://abstrakraft.org/cwiid/svn/trunk@125 918edb2d-ff29-0410-9de2-eb38e7f22bc7

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