source: tags/arb_5.5/JAVALIB/Makefile

Last change on this file was 2, checked in by oldcode, 23 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
2cc = cc -g -Kpic -I/ultra1/coders/langm/jdk1.1/include -I/ultra1/coders/langm/jdk1.1/include/solaris
3
4OBJECTS = Prompt.o
5HEADERS = Prompt.h
6CLASSES = Prompt.class
7
8help:
9        @echo 'Options'
10
11all:    source header lib
12
13lib:    $(OBJECTS)
14        ld -G -o libMyImpOfPrompt.so $(OBJECTS)
15
16source: $(CLASSES)
17
18header: $(HEADERS)
19
20clean:
21        rm -f $(OBJECTS) $(HEADERS) $(CLASSES)
22
23save:
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.