blob: fc8ec81e1bc59d777ca035cd4a3e659a88592232 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
2
3# This makefile is only used to update b.jar and directory a,
4# which are checked in to SCCS.
5
6JBIN=../../../../../build/solaris/bin
7
8all: b.jar
9
10b.jar: classes
11 $(JBIN)/jar cmf manifest b.jar -C b p/B.class
12
13classes:
14 $(JBIN)/javac -sourcepath a:b ?/p/*.java
15
16clean:
17 rm -rf b.jar ?/p/*.class