25 lines
683 B
Text
25 lines
683 B
Text
--- Makefile.orig Fri Nov 28 21:00:51 2003
|
|
+++ Makefile Fri Dec 19 01:31:42 2003
|
|
@@ -3,17 +3,17 @@
|
|
# $Id: Makefile,v 1.3 2003/11/29 01:41:36 jmarcus Exp $
|
|
#
|
|
|
|
-JAVAC= /usr/local/jdk1.4.2/bin/javac
|
|
-JAVAC_FLAGS= -O -g
|
|
-JAR= /usr/local/jdk1.4.2/bin/jar
|
|
+JAVAC?= /usr/local/jdk1.4.2/bin/javac
|
|
+JAVAC_FLAGS?= -O -g
|
|
+JAR?= /usr/local/jdk1.4.2/bin/jar
|
|
RM= /bin/rm
|
|
|
|
all:
|
|
$(JAVAC) $(JAVAC_FLAGS) com/marcuscom/confregdecode/ConfregDecode.java
|
|
|
|
jar: all
|
|
- $(JAR) -cvf cd.jar com/marcuscom/confregdecode/*.class
|
|
+ $(JAR) -cvf confregdecode.jar com/marcuscom/confregdecode/*.class
|
|
|
|
clean:
|
|
$(RM) -f com/marcuscom/confregdecode/*.class
|
|
- $(RM) -f cd.jar
|
|
+ $(RM) -f confregdecode.jar
|