]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/ibl.git/commitdiff
i2c reader utility
authorMike Line <m-line1@ti.com>
Tue, 19 Oct 2010 18:51:07 +0000 (14:51 -0400)
committerMike Line <m-line1@ti.com>
Tue, 19 Oct 2010 18:51:07 +0000 (14:51 -0400)
src/util/i2cRead/Makefile [new file with mode: 0644]

diff --git a/src/util/i2cRead/Makefile b/src/util/i2cRead/Makefile
new file mode 100644 (file)
index 0000000..a1f556d
--- /dev/null
@@ -0,0 +1,30 @@
+#***************************************************************
+#* FILE PURPOSE: Top level make file for the I2C reader
+#***************************************************************
+#* FILE NAME: Makefile
+#*
+#* DESCRIPTION: builds the i2c eeprom reader
+#*
+#***************************************************************
+
+DEVICES= c6455 c6472 c6474
+
+all:
+       @echo must specify a target [ $(DEVICE) ]
+
+ifndef ENDIAN
+ ENDIAN= little
+endif
+
+export ENDIAN
+
+$(DEVICES):
+       make -f makestg2 ARCH=c64x TARGET=$@ $@
+
+clean:
+       make -f makestg2 clean2 ARCH=c64x
+
+
+
+
+