blob: 9cf991e812aff1a95acddcc7d7e442788bcfac52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- Makefile.orig Thu May 31 16:08:05 2001
+++ Makefile Sat Jun 2 23:35:58 2001
@@ -12,8 +12,8 @@
$(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 cconfregdecode.jar
|