annotate 3rdparty/packages/cc/makefile @ 870:7ec334df8265

Forgot to add chmod
author boisy
date Thu, 16 Jan 2003 20:32:24 +0000
parents f3670cfbf025
children 27d3f3045208
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
389
a592c9bb8785 Here is the preprocessor of the Microware C-compiler v.1.1 for level1 systems
roug
parents:
diff changeset
1 include ../../../Makefile.rules
a592c9bb8785 Here is the preprocessor of the Microware C-compiler v.1.1 for level1 systems
roug
parents:
diff changeset
2
870
7ec334df8265 Forgot to add chmod
boisy
parents: 868
diff changeset
3 DISK = cc.dsk
7ec334df8265 Forgot to add chmod
boisy
parents: 868
diff changeset
4 CMDS = cc1 c.prep c.pass1 c.pass2 c.opt c.asm c.link
7ec334df8265 Forgot to add chmod
boisy
parents: 868
diff changeset
5
7ec334df8265 Forgot to add chmod
boisy
parents: 868
diff changeset
6 ALLOBJS = $(CMDS)
389
a592c9bb8785 Here is the preprocessor of the Microware C-compiler v.1.1 for level1 systems
roug
parents:
diff changeset
7
868
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
8 # Make all components
870
7ec334df8265 Forgot to add chmod
boisy
parents: 868
diff changeset
9 all: $(ALLOBJS)
868
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
10 @$(ECHO) "*********************************************"
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
11 @$(ECHO) "* *"
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
12 @$(ECHO) "* C Compiler *"
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
13 @$(ECHO) "* *"
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
14 @$(ECHO) "*********************************************"
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
15 -$(CD) SOURCES; $(UNIX2OS9) *.a *.c
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
16 -$(CD) DEFS; $(UNIX2OS9) *.h
870
7ec334df8265 Forgot to add chmod
boisy
parents: 868
diff changeset
17 $(CHMOD) 755 $(CMDS)
389
a592c9bb8785 Here is the preprocessor of the Microware C-compiler v.1.1 for level1 systems
roug
parents:
diff changeset
18
868
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
19 # Clean all components
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
20 clean: dskclean
870
7ec334df8265 Forgot to add chmod
boisy
parents: 868
diff changeset
21 $(RM) $(ALLOBJS)
868
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
22 -$(CD) SOURCES; $(OS92UNIX) *.a *.c
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
23 -$(CD) DEFS; $(OS92UNIX) *.h
389
a592c9bb8785 Here is the preprocessor of the Microware C-compiler v.1.1 for level1 systems
roug
parents:
diff changeset
24
868
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
25 dsk: all
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
26 $(RM) $(DISK)
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
27 $(OS9FORMAT) $(DISK) -t40 -h2 -n"C Compiler"
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
28 $(MAKDIR) $(DISK),CMDS
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
29 $(MAKDIR) $(DISK),LIB
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
30 $(MAKDIR) $(DISK),DEFS
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
31 $(MAKDIR) $(DISK),SOURCES
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
32 $(MAKDIR) $(DISK),SOURCES/SYS
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
33 $(CP) $(CMDS) $(DISK),CMDS
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
34 $(CP) DEFS/*.h $(DISK),DEFS
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
35 $(CP) LIB/*.l LIB/*.r $(DISK),LIB
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
36 $(CP) SOURCES/*.c $(DISK),SOURCES
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
37 $(CP) SOURCES/*.a $(DISK),SOURCES/SYS
389
a592c9bb8785 Here is the preprocessor of the Microware C-compiler v.1.1 for level1 systems
roug
parents:
diff changeset
38
868
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
39 dskclean:
f3670cfbf025 Added more intelligence to making DSK image
boisy
parents: 389
diff changeset
40 -$(RM) $(DISK)
389
a592c9bb8785 Here is the preprocessor of the Microware C-compiler v.1.1 for level1 systems
roug
parents:
diff changeset
41