annotate level1/atari/defs/makefile @ 2826:e76cc015cc03 lwtools-port

incorporated new port.mak file in every port directory
author Boisy Pitre <boisy.pitre@nuance.com>
date Thu, 23 May 2013 18:09:08 -0500
parents ab3a2531c000
children 28ed72477814
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2826
e76cc015cc03 incorporated new port.mak file in every port directory
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2710
diff changeset
1 include ../port.mak
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
2
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
3 DEPENDS = ./makefile
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
4
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2624
diff changeset
5 DEFOPTS = --preprocess -DLevel=1
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
6 DEFSDIR = ../../../defs
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2617
diff changeset
7 DEFS = defsfile os9.d rbf.d scf.d atari.d atarivtio.d
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
8 ALLOBJS = $(DEFS)
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
9
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
10 all: $(ALLOBJS)
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
11
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2617
diff changeset
12 defsfile: defsfile.asm
2685
2bf46e4a7c27 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2684
diff changeset
13 $(AS) $(DEFOPTS) $< > $@
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
14
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2617
diff changeset
15 os9.d: $(DEFSDIR)/os9.d
2685
2bf46e4a7c27 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2684
diff changeset
16 $(AS) $(DEFOPTS) -DOS9.D=0 $< > $@
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
17
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2617
diff changeset
18 rbf.d: $(DEFSDIR)/rbf.d
2685
2bf46e4a7c27 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2684
diff changeset
19 $(AS) $(DEFOPTS) -DRBF.D=0 $< > $@
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
20
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2617
diff changeset
21 scf.d: $(DEFSDIR)/scf.d
2685
2bf46e4a7c27 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2684
diff changeset
22 $(AS) $(DEFOPTS) -DSCF.D=0 $< > $@
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
23
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2617
diff changeset
24 atari.d: $(DEFSDIR)/atari.d
2685
2bf46e4a7c27 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2684
diff changeset
25 $(AS) $(DEFOPTS) -DATARI.D=0 $< > $@
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
26
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2617
diff changeset
27 atarivtio.d: $(DEFSDIR)/atarivtio.d
2685
2bf46e4a7c27 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2684
diff changeset
28 $(AS) $(DEFOPTS) -DATARIVTIO.D=0 $< > $@
2617
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
29
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
30 clean:
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
31 $(RM) $(DEFS)
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
32
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
33 showobjs:
b1145d2cb659 Adding atari port folder and modifications to init and krn to accommodate
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
34 @$(ECHO) $(ALLOBJS)