aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: a3152c89562760477ad2c13231aa99aaa48a0bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Be sure to set this before compiling ...
      VER = 1.2.1
     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; )