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/showtext | |
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/showtext')
-rw-r--r-- | tools/showtext/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
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) |