]>
Commit | Line | Data |
---|---|---|
bbf1f0e5 KB |
1 | #************************************************************************ |
2 | # Makefile for HELLO under VMS | |
3 | # by Stefan Hammes | |
4 | # (incomplete) update history: | |
5 | # 11.04.95 | |
6 | #************************************************************************ | |
7 | ||
8 | #************************************************************************ | |
9 | # Definition section | |
10 | # (cave: definitions and includes must begin with ',') | |
11 | #************************************************************************ | |
12 | ||
13 | APPOPTS = | |
14 | APPDEFS = | |
15 | APPINCS = | |
16 | ||
17 | #************************************************************************ | |
18 | # Module section | |
19 | #************************************************************************ | |
20 | ||
21 | # Name of main module | |
22 | MAIN = hello | |
23 | ||
24 | # Object modules of the application. | |
25 | OBJS = hello.obj | |
26 | ||
27 | .include [--.src]makevms.env | |
28 | ||
29 | # main dependency | |
30 | $(MAIN).exe : $(MAIN).$(OBJ) | |
31 | $(LINK) $(LINKFLAGS) /exec=$(MAIN).exe $(MAIN).$(OBJ),$(WXLIB)/lib,$(OPTSFILE)/option | |
32 | - purge *.exe | |
33 | ||
34 | #************************************************************************ | |
35 | # Header file depedencies following | |
36 | #************************************************************************ | |
37 | hello.obj : hello.cc hello.h | |
38 |