diff options
author | Andreas Regel <andreas.regel@gmx.de> | 2014-10-19 10:42:51 +0200 |
---|---|---|
committer | Andreas Regel <andreas.regel@gmx.de> | 2016-03-31 18:50:57 +0200 |
commit | 831b3ad714a036edab6b63f84040ab8b32a43ef4 (patch) | |
tree | efc3acdcddc04735b03118a129baa299f2248dfc /tools | |
parent | 7714e8f77183480aa356df454bfa8144e3cd36b4 (diff) | |
download | graphlcd-base-831b3ad714a036edab6b63f84040ab8b32a43ef4.tar.gz graphlcd-base-831b3ad714a036edab6b63f84040ab8b32a43ef4.tar.bz2 |
Remove dependency target, instead generate dependencies during compliling.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/convpic/Makefile | 5 | ||||
-rw-r--r-- | tools/crtfont/Makefile | 5 | ||||
-rw-r--r-- | tools/genfont/Makefile | 5 | ||||
-rw-r--r-- | tools/lcdtestpattern/Makefile | 5 | ||||
-rw-r--r-- | tools/showpic/Makefile | 5 | ||||
-rw-r--r-- | tools/showtext/Makefile | 5 |
6 files changed, 6 insertions, 24 deletions
diff --git a/tools/convpic/Makefile b/tools/convpic/Makefile index 6ed0d76..6029d5f 100644 --- a/tools/convpic/Makefile +++ b/tools/convpic/Makefile @@ -22,10 +22,7 @@ all: $(PRGNAME) # Dependencies: -#MAKEDEP = $(CXX) -MM -MG -DEPFILE = .dependencies -$(DEPFILE): Makefile - @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ +DEPFILE = $(OBJS:%.o=%.d) -include $(DEPFILE) diff --git a/tools/crtfont/Makefile b/tools/crtfont/Makefile index 8827859..64b1fb6 100644 --- a/tools/crtfont/Makefile +++ b/tools/crtfont/Makefile @@ -21,10 +21,7 @@ all: $(PRGNAME) # Dependencies: -#MAKEDEP = $(CXX) -MM -MG -DEPFILE = .dependencies -$(DEPFILE): Makefile - @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ +DEPFILE = $(OBJS:%.o=%.d) -include $(DEPFILE) diff --git a/tools/genfont/Makefile b/tools/genfont/Makefile index d4bd2be..9a699dd 100644 --- a/tools/genfont/Makefile +++ b/tools/genfont/Makefile @@ -24,10 +24,7 @@ all: $(PRGNAME) # Dependencies: -#MAKEDEP = $(CXX) -MM -MG -DEPFILE = .dependencies -$(DEPFILE): Makefile - @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ +DEPFILE = $(OBJS:%.o=%.d) -include $(DEPFILE) diff --git a/tools/lcdtestpattern/Makefile b/tools/lcdtestpattern/Makefile index b4dccbf..c004253 100644 --- a/tools/lcdtestpattern/Makefile +++ b/tools/lcdtestpattern/Makefile @@ -22,10 +22,7 @@ all: $(PRGNAME) # Dependencies: -#MAKEDEP = $(CXX) -MM -MG -DEPFILE = .dependencies -$(DEPFILE): Makefile - @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ +DEPFILE = $(OBJS:%.o=%.d) -include $(DEPFILE) diff --git a/tools/showpic/Makefile b/tools/showpic/Makefile index dd235e9..e9bc83c 100644 --- a/tools/showpic/Makefile +++ b/tools/showpic/Makefile @@ -22,10 +22,7 @@ all: $(PRGNAME) # Dependencies: -#MAKEDEP = $(CXX) -MM -MG -DEPFILE = .dependencies -$(DEPFILE): Makefile - @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ +DEPFILE = $(OBJS:%.o=%.d) -include $(DEPFILE) diff --git a/tools/showtext/Makefile b/tools/showtext/Makefile index dcab7d3..62196aa 100644 --- a/tools/showtext/Makefile +++ b/tools/showtext/Makefile @@ -22,10 +22,7 @@ all: $(PRGNAME) # Dependencies: -#MAKEDEP = $(CXX) -MM -MG -DEPFILE = .dependencies -$(DEPFILE): Makefile - @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ +DEPFILE = $(OBJS:%.o=%.d) -include $(DEPFILE) |