Browse Source

Add NIC to targets that are always made.

Even though it is only currently used for rom-o-matic.net code,
it is good to make sure it gets built, and that the parsing code
is working.
tags/v0.9.3
Marty Connor 17 years ago
parent
commit
63c9131eeb
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      src/Makefile

+ 5
- 5
src/Makefile View File

14
 MAKEDEPS	+= Config
14
 MAKEDEPS	+= Config
15
 include Config
15
 include Config
16
 
16
 
17
+# Location to place generated files
18
+#
19
+BIN		:= bin
20
+
17
 # If no architecture is specified in Config or on the command-line,
21
 # If no architecture is specified in Config or on the command-line,
18
 # use that of the build machine.
22
 # use that of the build machine.
19
 #
23
 #
35
 # If invoked with no build target, print out a helpfully suggestive
39
 # If invoked with no build target, print out a helpfully suggestive
36
 # message.
40
 # message.
37
 #
41
 #
38
-noargs : blib
42
+noargs : blib $(BIN)/NIC
39
 	@echo '===================================================='
43
 	@echo '===================================================='
40
 	@echo
44
 	@echo
41
 	@echo ' *** WARNING: THE INSTRUCTIONS BELOW DO NOT FULLY WORK YET !!!  ***'
45
 	@echo ' *** WARNING: THE INSTRUCTIONS BELOW DO NOT FULLY WORK YET !!!  ***'
93
 ZBIN		?= ./util/zbin
97
 ZBIN		?= ./util/zbin
94
 DOXYGEN		?= doxygen
98
 DOXYGEN		?= doxygen
95
 
99
 
96
-# Location to place generated files
97
-#
98
-BIN		?= bin
99
-
100
 # Common flags
100
 # Common flags
101
 #
101
 #
102
 CFLAGS		+= -I include -I arch/$(ARCH)/include -I . -DARCH=$(ARCH)
102
 CFLAGS		+= -I include -I arch/$(ARCH)/include -I . -DARCH=$(ARCH)

Loading…
Cancel
Save