|
From: Bob T. <bt...@us...> - 2003-11-08 21:12:25
|
Update of /cvsroot/benson/benson3 In directory sc8-pr-cvs1:/tmp/cvs-serv16026 Modified Files: Makefile.in Log Message: Added the scripts directory into the build process Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson3/Makefile.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** Makefile.in 30 Sep 2003 04:32:06 -0000 1.12 --- Makefile.in 8 Nov 2003 21:12:22 -0000 1.13 *************** *** 1,3 **** ! TARGETS=make-src make-conf all: $(TARGETS) --- 1,3 ---- ! TARGETS=make-src make-conf make-scripts all: $(TARGETS) *************** *** 9,19 **** --- 9,24 ---- (cd conf && $(MAKE)) + make-scripts: + (cd scripts && $(MAKE)) + install: (cd src && $(MAKE) install) (cd conf && $(MAKE) install) + (cd scripts && $(MAKE) install) clean: (cd src && $(MAKE) clean) (cd conf && $(MAKE) clean) + (cd scripts && $(MAKE) clean) distclean: clean *************** *** 21,23 **** --- 26,29 ---- (cd src && $(MAKE) distclean) (cd conf && $(MAKE) distclean) + (cd scripts && $(MAKE) distclean) |