From 8a476e2fba7e5bd01ee84742eaf5fbd37a92fdc6 Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Thu, 28 Nov 2013 23:06:23 +0100 Subject: [PATCH] Makefile: get rid of the config.h check. This doesn't work well for developers, because config.h.default is rewritten all the time when switching branches. --- Makefile-common | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Makefile-common b/Makefile-common index 298b265..8b8fe6e 100644 --- a/Makefile-common +++ b/Makefile-common @@ -42,18 +42,11 @@ OBJCOPY = $(TOOLCHAIN)objcopy .PHONY: all clean doc functionsbysize .PRECIOUS: %.o %.elf -all: config.h $(BUILDDIR) $(TARGET) +all: $(BUILDDIR) $(TARGET) clean: rm -rf $(BUILDDIR) $(TARGET) *~ -config.h: config.default.h - @echo "config.default.h is more recent than config.h. You likely want to" - @echo "review (edit) config.h to match new features in config.default.h." - @echo "To view the differences, run: diff -bBEu config.h config.default.h" - @echo "If you just want to get rid of this message, run: touch config.h" - @false - doc: Doxyfile *.c *.h doxygen $<