Need pre-processor support for auto-generation of source file

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1312 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2008-11-26 18:59:14 +00:00
parent 6fec29f111
commit 9ebd20cef8
32 changed files with 206 additions and 5 deletions
+5
View File
@@ -67,6 +67,11 @@ OBJEXT = .o
LIBEXT = .lib
EXEEXT = .cmd
define PREPROCESS
@echo "CPP: $1->$2"
@$(CPP) $(CPPFLAGS) $1 -o $2
endef
define COMPILE
@echo "CC: $1"
@$(CC) -c $(CFLAGS) $1 -o $2