ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Makefile
Revision: 1.1
Committed: Tue Nov 14 02:41:04 2000 UTC (23 years, 6 months ago) by tdb
Branch: MAIN
Log Message:
Basic Makefile for the main server. Will need some work I expect.

File Contents

# User Rev Content
1 tdb 1.1 # Makefile for server
2     # $Id$
3    
4     all : idl core filter
5    
6     core :
7     cd CORE && $(MAKE)
8    
9     filter :
10     cd Filter && $(MAKE)
11    
12     idl : iscream.idl
13     idl iscream.idl
14     @touch .madeidl
15    
16     clean :
17     rm -Rf uk
18     rm -f .madeidl
19     cd CORE && $(MAKE) clean
20     cd Filter && $(MAKE) clean
21