diff options
-rw-r--r-- | examples/Makefile | 2 | ||||
-rw-r--r-- | src/Makefile | 7 |
2 files changed, 1 insertions, 8 deletions
diff --git a/examples/Makefile b/examples/Makefile index 4c317f3..a04152b 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -13,4 +13,4 @@ JAVACOPTS = -deprecation all: $(OBJS) clean: - /bin/rm -f -- $(OBJS) *~ *.bak + /bin/rm -f -- $(OBJS) *~ *.bak *.class diff --git a/src/Makefile b/src/Makefile index a6e7a96..17bd123 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,9 +4,6 @@ JAVACOPTS = -d . -deprecation .SUFFIXES: .java .class SRCS = *.java OBJS = $(SRCS:.java=.class) - JAR = ../lib/Ivy.jar - VER = 1.0.11 - DIST = ../lib/ivy-java-$(VER).jar JAVAC = jikes #JAVAC = javac DOCS = ../doc/html/api @@ -22,10 +19,6 @@ all: $(OBJS) clean: /bin/rm -f -- $(OBJS) *~ *.bak $(JAR) -dist: - cd .. - fastjar cvfm $(DIST) ../manifest fr gnu - docs: rm -fR $(DOCS)/*html rm -fR $(DOCS)/*css |