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

Loading…
Cancel
Save