annotate 3rdparty/subrtns/makefile @ 2876:1ca5c484c7a7

joydrv_6551L.asm: Remove spurious ! (OR) from expression
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 24 Nov 2013 15:48:17 +0100
parents e4a0f58a5f9b
children 1addfd8c9d5f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2758
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 1407
diff changeset
1 ifndef NITROS9DIR
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 1407
diff changeset
2 NITROS9DIR = $(HOME)/nitros9
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 1407
diff changeset
3 endif
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 1407
diff changeset
4 include $(NITROS9DIR)/rules.mak
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5
1407
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
6 DEPENDS = ./makefile
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7
1178
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
8 CMDS = cpu hires_l1 hires_l2 joystk
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
10 ALLOBJS = $(CMDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11
1178
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
12 all: banner $(ALLOBJS) $(DEPENDS)
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
13
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
14 banner:
1366
770c350f4c15 More changes
boisy
parents: 1178
diff changeset
15 @$(ECHO) "**************************************************"
770c350f4c15 More changes
boisy
parents: 1178
diff changeset
16 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1178
diff changeset
17 @$(ECHO) "* 3rd Party Subroutine Modules *"
770c350f4c15 More changes
boisy
parents: 1178
diff changeset
18 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1178
diff changeset
19 @$(ECHO) "**************************************************"
1178
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
20
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
21 hires_l1: hires.asm
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
22 $(AS) $(ASOUT)$@ $< $(AFLAGS) -aLevel=1
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
23
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
24 hires_l2: hires.asm
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
25 $(AS) $(ASOUT)$@ $< $(AFLAGS) -aLevel=2
900ceed1880a Added standard headers
boisy
parents: 1129
diff changeset
26
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
27 clean:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
28 $(RM) $(ALLOBJS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
29