ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/build/Makefile
Revision: 1.1.2.4
Committed: Tue Dec 12 01:54:02 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.1.2.3: +2 -3 lines
Log Message:
Attempted to improve the dependencies, and tidied up the code Makefiles a bit
better. Getting there... slowly.

File Contents

# User Rev Content
1 tdb 1.1.2.1 # Makefile for build
2 tdb 1.1.2.4 # $Id: Makefile,v 1.1.2.3 2000/12/11 23:44:31 tdb1 Exp $
3 tdb 1.1.2.1
4 tdb 1.1.2.3 include ../Config.inc
5    
6     BUILDFILES = uk
7 tdb 1.1.2.1
8     all : package
9    
10     clean :
11 tdb 1.1.2.3 rm -Rf $(BUILDFILES)
12 tdb 1.1.2.1 rm -Rf $(PACKAGE)
13    
14     package : $(PACKAGE)
15    
16 tdb 1.1.2.4 $(PACKAGE) : $(BUILDCHECK)
17 tdb 1.1.2.3 @echo "Main-Class: $(MAINCLASS)" > MANIFEST_TMP
18     @echo "Class-Path: $(CLPATH)" >> MANIFEST_TMP
19     jar -cmf MANIFEST_TMP $(PACKAGE) $(BUILDFILES)
20 tdb 1.1.2.1 rm -f MANIFEST_TMP
21 tdb 1.1.2.3
22     include $(MKINC)