|
Last change
on this file was
2,
checked in by oldcode, 25 years ago
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
476 bytes
|
| Line | |
|---|
| 1 | .SUFFIXES: .java .class .h |
|---|
| 2 | cc = cc -g -Kpic -I/ultra1/coders/langm/jdk1.1/include -I/ultra1/coders/langm/jdk1.1/include/solaris |
|---|
| 3 | |
|---|
| 4 | OBJECTS = Prompt.o |
|---|
| 5 | HEADERS = Prompt.h |
|---|
| 6 | CLASSES = Prompt.class |
|---|
| 7 | |
|---|
| 8 | help: |
|---|
| 9 | @echo 'Options' |
|---|
| 10 | |
|---|
| 11 | all: source header lib |
|---|
| 12 | |
|---|
| 13 | lib: $(OBJECTS) |
|---|
| 14 | ld -G -o libMyImpOfPrompt.so $(OBJECTS) |
|---|
| 15 | |
|---|
| 16 | source: $(CLASSES) |
|---|
| 17 | |
|---|
| 18 | header: $(HEADERS) |
|---|
| 19 | |
|---|
| 20 | clean: |
|---|
| 21 | rm -f $(OBJECTS) $(HEADERS) $(CLASSES) |
|---|
| 22 | |
|---|
| 23 | save: |
|---|
| 24 | |
|---|
| 25 | .c.o: |
|---|
| 26 | $(cc) -c $< |
|---|
| 27 | |
|---|
| 28 | .class.h: |
|---|
| 29 | javah -jni $(@F:.h=) |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | .java.class: |
|---|
| 33 | javac $< |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.