From a2256f3fd98983957fb7ecd9f841e7c68de8870b Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 18 Sep 2012 14:06:57 +0000 Subject: Refactor common make definitions to tools/Config.mk; Add verbosity option to build (Richard Cochran) git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5160 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/configs/sim/touchscreen/Make.defs | 28 ---------------------------- 1 file changed, 28 deletions(-) (limited to 'nuttx/configs/sim/touchscreen') diff --git a/nuttx/configs/sim/touchscreen/Make.defs b/nuttx/configs/sim/touchscreen/Make.defs index 112f6def7..05d223099 100644 --- a/nuttx/configs/sim/touchscreen/Make.defs +++ b/nuttx/configs/sim/touchscreen/Make.defs @@ -101,34 +101,6 @@ ifeq ($(CONFIG_SIM_M32),y) LDFLAGS += -m32 endif -define PREPROCESS - @echo "CPP: $1->$2" - @$(CPP) $(CPPFLAGS) $1 -o $2 -endef - -define COMPILE - @echo "CC: $1" - @$(CC) -c $(CFLAGS) $1 -o $2 -endef - -define COMPILEXX - @echo "CXX: $1" - @$(CXX) -c $(CXXFLAGS) $1 -o $2 -endef - -define ASSEMBLE - @echo "AS: $1" - @$(CC) -c $(AFLAGS) $1 -o $2 -endef - -define ARCHIVE - echo "AR: $2"; \ - $(AR) $1 $2 || { echo "$(AR) $1 $2 FAILED!" ; exit 1 ; } -endef - -define CLEAN - @rm -f *.o *.a -endef MKDEP = $(TOPDIR)/tools/mkdeps.sh -- cgit v1.2.3