]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/ibl.git/blobdiff - src/driver/c64x/make/makefile
Merge pull request #3 in PROCESSOR-SDK/ibl from PRSDK-5675 to master
[keystone-rtos/ibl.git] / src / driver / c64x / make / makefile
index 9a1e1a05308a102b0801467b04d7c0d3a2bd061c..76f2a4d25d9f88682369496c31fa97adfebef04c 100644 (file)
@@ -63,7 +63,11 @@ TIMSRC= timer.c
 NANDDIR= nand
 NANDSRC= nand.c
 
-CSRC= $(ETHSRC) $(STRMSRC) $(TIMSRC) $(NANDSRC)
+# The nor dirver
+NORDIR= nor
+NORSRC= nor.c
+
+CSRC= $(ETHSRC) $(STRMSRC) $(TIMSRC) $(NANDSRC) $(NORSRC)
 
 
 .PHONY: driver
@@ -79,13 +83,19 @@ C6X_C_DIR+= ;$(STDINC)
 C6X_C_DIR+= ;$(IBL_ROOT)/driver/timer
 C6X_C_DIR+= ;$(IBL_ROOT)/driver/stream
 C6X_C_DIR+= ;$(IBL_ROOT)/driver/nand
+C6X_C_DIR+= ;$(IBL_ROOT)/driver/nor
 C6X_C_DIR+= ;$(IBL_ROOT)/cfg/$(TARGET)
 C6X_C_DIR+= ;$(IBL_ROOT)/hw/timer
 C6X_C_DIR+= ;$(IBL_ROOT)/hw/nands
+C6X_C_DIR+= ;$(IBL_ROOT)/device
+C6X_C_DIR+= ;$(IBL_ROOT)/device/$(TARGET)
 export C6X_C_DIR
 
-vpath % $(subst ;,$(PATHSEP), $(ECODIR)/$(ETHDIR); $(ECODIR)/$(STRMDIR); $(ECODIR)/$(TIMDIR); $(ECODIR)/$(NANDDIR) )
-
+vpath % $(ECODIR)/$(ETHDIR)
+vpath % $(ECODIR)/$(STRMDIR)
+vpath % $(ECODIR)/$(TIMDIR)
+vpath % $(ECODIR)/$(NANDDIR)
+vpath % $(ECODIR)/$(NORDIR)
 
 driver: gen_cdefdep makefile $(OBJS)
 
@@ -98,7 +108,3 @@ gen_cdefdep:
        @sh -c 'if diff -q cdefdep.tmp cdefdep ; then echo same ; else $(CP) cdefdep.tmp cdefdep ; fi '
 
 
-
-
-
-