ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/DBS/Servers/AppServer/src/GNUmakefile
Revision: 1.3
Committed: Wed Mar 8 17:54:29 2006 UTC (19 years, 2 months ago) by afaq
Branch: MAIN
CVS Tags: DBS_0_0_3a, DBS_0_0_3, DBS_0_0_2, DBS_0_0_1, pre_DBS_0_0_1, post_dict_type_checking_merge, post_MiniPythonAPI_merged_to_trunk, pre_MiniPythonAPI_merge_to_trunk, DBS_0_0_0, vs20060320, HEAD
Changes since 1.2: +2 -2 lines
Log Message:
AppServer: Removed PythonWebService Interface from the Server Side, Speed improved, Error Handline is simpler

File Contents

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