443
|
1 include ../../../../Makefile.rules
|
|
2
|
|
3 DEPENDS = ./Makefile
|
|
4
|
450
|
5 SYSFILES = LogBook env.file
|
443
|
6 SYSWINFILES = stdfonts stdpats_2 stdpats_4 stdpats_16 stdptrs
|
|
7 HELPFILES = cocopr.hp control.hp gcal.hp gcalc.hp gclock.hp gport.hp \
|
|
8 gprint.hp gshell.hp
|
445
|
9 ASSETFILES = stdfonts stdpats_2 stdpats_4 stdpats_16 stdptrs \
|
|
10 ibm_edc.fnt iso_latin1.fnt
|
443
|
11
|
|
12 HELPMSG = helpmsg
|
445
|
13 ALLOBJS = $(SYSFILES) $(HELPMSG) $(ASSETFILES)
|
443
|
14
|
|
15 all: $(ALLOBJS) $(DEPENDS)
|
|
16 $(UNIX2OS9) $(SYSFILES)
|
|
17 $(CHMOD) 644 $(ALLOBJS)
|
|
18
|
|
19 $(HELPMSG): $(HELPFILES)
|
|
20 $(MERGE) $(HELPFILES) > $@
|
|
21 $(UNIX2OS9) $@
|
|
22
|
|
23 clean:
|
|
24 $(OS92UNIX) $(SYSFILES)
|
|
25 $(RM) $(HELPMSG) $(LEVEL1FILES)
|
|
26
|
|
27 showobjs:
|
|
28 @$(ECHO) $(ALLOBJS)
|