| Revision: | 1.6.2.3 | 
| Committed: | Tue Dec 12 01:53:55 2000 UTC (24 years, 10 months ago) by tdb | 
| Branch: | SERVER_PACKAGEBUILD | 
| Changes since 1.6.2.2: | +3 -3 lines | 
| Log Message: | Attempted to improve the dependencies, and tidied up the code Makefiles a bit better. Getting there... slowly. | 
| # | Content | 
|---|---|
| 1 | # Makefile for server | 
| 2 | # $Id: Makefile,v 1.6.2.2 2000/12/11 23:43:50 tdb1 Exp $ | 
| 3 | |
| 4 | include Config.inc | 
| 5 | |
| 6 | all : buildidl code build | 
| 7 | |
| 8 | idl : $(IDL) | 
| 9 | $(IDL) : idl/iscream.idl | 
| 10 | cd idl && $(MAKE) idl | 
| 11 | |
| 12 | buildidl : $(IDL) idl | 
| 13 | cd idl && $(MAKE) build | 
| 14 | |
| 15 | code : | 
| 16 | cd uk/ac/ukc/iscream && $(MAKE) all | 
| 17 | |
| 18 | clean : | 
| 19 | cd idl && $(MAKE) clean | 
| 20 | cd build && $(MAKE) clean | 
| 21 | |
| 22 | run : build | 
| 23 | cd build && java -jar iscream.jar | 
| 24 | |
| 25 | build : | 
| 26 | cd build && $(MAKE) package | 
| 27 | |
| 28 | include $(MKINC) |