Changeset 487
- Timestamp:
- Apr 21, 2004, 4:22:03 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/Makefile
r441 r487 1 # $Id: Makefile,v 1. 7 2004-04-19 19:38:18rhl Exp $1 # $Id: Makefile,v 1.8 2004-04-21 14:22:03 rhl Exp $ 2 2 SHELL = /bin/sh 3 DIRS = src include3 DIRS = bin include lib src ups 4 4 5 .PHONY : all 6 all :5 .PHONY : all clean 6 all clean : 7 7 @for f in $(DIRS); do \ 8 8 if [ ! -d $$f ]; then \ 9 9 echo No such directory: $$f >&2; \ 10 10 else \ 11 (cd $$f; $(MAKE) ); \11 (cd $$f; $(MAKE) $(MFLAGS) $@); \ 12 12 fi \ 13 13 done 14 15 clean : topClean 16 .PHONY : topClean 17 topClean: 18 $(RM) *~ core* TAGS 14 19 15 20 .PHONY : tags … … 27 32 publish: 28 33 rsync -e ssh -auv ./ poiserver0:PSLib/ 29 30 clean:31 $(RM) *~ core* TAGS32 @for f in $(DIRS); do \33 if [ ! -d $$f ]; then \34 echo No such directory: $$f >&2; \35 else \36 (cd $$f; $(MAKE) clean); \37 fi \38 done39
Note:
See TracChangeset
for help on using the changeset viewer.
