|
From: Bob T. <bt...@us...> - 2003-11-26 00:14:23
|
Update of /cvsroot/benson/benson3 In directory sc8-pr-cvs1:/tmp/cvs-serv818 Modified Files: Makefile.in Log Message: More updates to the system. Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson3/Makefile.in,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** Makefile.in 8 Nov 2003 21:12:22 -0000 1.13 --- Makefile.in 26 Nov 2003 00:14:20 -0000 1.14 *************** *** 1,3 **** ! TARGETS=make-src make-conf make-scripts all: $(TARGETS) --- 1,3 ---- ! TARGETS=make-src make-conf make-scripts make-handlers all: $(TARGETS) *************** *** 12,19 **** --- 12,23 ---- (cd scripts && $(MAKE)) + make-handlers: + (cd handlers && $(MAKE)) + install: (cd src && $(MAKE) install) (cd conf && $(MAKE) install) (cd scripts && $(MAKE) install) + (cd handlers && $(MAKE) install) clean: *************** *** 21,24 **** --- 25,29 ---- (cd conf && $(MAKE) clean) (cd scripts && $(MAKE) clean) + (cd handlers && $(MAKE) clean) distclean: clean *************** *** 27,29 **** --- 32,35 ---- (cd conf && $(MAKE) distclean) (cd scripts && $(MAKE) distclean) + (cd handlers && $(MAKE) distclean) |