diff options
author | jestin | 2002-06-07 11:28:43 +0000 |
---|---|---|
committer | jestin | 2002-06-07 11:28:43 +0000 |
commit | 4fc2072d5454faf6a79c9683f2cde0f5fa119147 (patch) | |
tree | 1ff93f593fdb9b62b3b32de5c1f2995baf89bb14 | |
parent | c3ef99ea8cf40c894b42fc1cb6f88c627b63e3e1 (diff) | |
download | ivy-java-4fc2072d5454faf6a79c9683f2cde0f5fa119147.zip ivy-java-4fc2072d5454faf6a79c9683f2cde0f5fa119147.tar.gz ivy-java-4fc2072d5454faf6a79c9683f2cde0f5fa119147.tar.bz2 ivy-java-4fc2072d5454faf6a79c9683f2cde0f5fa119147.tar.xz |
Well well well
-rw-r--r-- | Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d9272c8 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +# Be sure to set this before compiling ... + VER = 1.2.0 + DIST = lib/ivy-java-$(VER).jar + DOCS = doc/html/api + +all: class + +class: + ( cd src; make; ) + +docs: + ( cd src; make docs ; ) + +dist: class docs + ln -sf src/fr . + ln -sf /usr/share/java/repository/gnu . + fastjar cvfm $(DIST) manifest fr/dgac/ivy/*.class gnu src/Makefile src/*.java examples/*java examples/Makefile doc/html/api/fr/dgac/ivy/*html doc/html/api/*html doc/html/api/*css + rm -f fr gnu + +clean: + ( cd src; make clean ;) + ( cd tests; make clean ; ) + ( cd examples; make clean; ) |