ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/DBS/Servers/AppServer/src/GNUmakefile
Revision: 1.2
Committed: Thu Jan 12 19:44:07 2006 UTC (19 years, 4 months ago) by afaq
Branch: MAIN
CVS Tags: AfterJan2006SchemaChanges_v01_00_01, AfterJan2006SchemaChanges_v01_00_00, AfterJan2006SchemaChanges, BeforeJan2006SchemaChanges
Branch point for: BranchForCPPWebServiceTesting
Changes since 1.1: +9 -2 lines
Log Message:
A better GNUmakefile, stops in case of Errors, previous kept on going

File Contents

# User Rev Content
1 afaq 1.2 SUBDIRS = bizlogiclayer clientlayer comlayer objectlayer common
2    
3     .PHONY: subdirs $(SUBDIRS)
4    
5     all: $(SUBDIRS)
6    
7     $(SUBDIRS):
8     $(MAKE) -C $@
9 afaq 1.1
10     clean:
11     for d in bizlogiclayer clientlayer comlayer objectlayer common; do (cd $$d; $(MAKE) clean ;) done
12    
13    
14    
15 afaq 1.2