| Revision: | 1.2 |
| Committed: | Sat Mar 17 19:25:17 2001 UTC (24 years, 9 months ago) by pjm2 |
| Branch: | MAIN |
| Changes since 1.1: | +2 -1 lines |
| Log Message: | Made the location of the report list relative to the build directory. |
| # | Content |
|---|---|
| 1 | # Makefile for reports (building jar file) |
| 2 | # $Id: Makefile,v 1.1 2001/02/19 08:17:01 pjm2 Exp $ |
| 3 | |
| 4 | include ../Config.inc |
| 5 | |
| 6 | install : |
| 7 | cd $(BUILDFILES) |
| 8 | javac -classpath $(JCCLASSPATH) *.java |
| 9 | @echo "Main-Class: $(MAINCLASS)" > MANIFEST_TMP |
| 10 | @echo "Class-Path: $(CLPATH)" >> MANIFEST_TMP |
| 11 | jar -cmf MANIFEST_TMP $(PACKAGE) . |
| 12 | rm -f MANIFEST_TMP |
| 13 | mv $(PACKAGE) ../build/ |
| 14 | cp DBReporter.properties ../build/ |