diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2012-06-09 00:42:44 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2012-06-09 00:42:44 +0200 |
commit | 6ce1975169f81c113b343b67821554062d2859e9 (patch) | |
tree | a0419b29495778db6c23ce945f25e53e99e6e553 /tools/lcdtestpattern/Makefile | |
parent | d251903ec7eb83087ea91d5fe7b489c5e78ec8ee (diff) | |
download | graphlcd-base-6ce1975169f81c113b343b67821554062d2859e9.tar.gz graphlcd-base-6ce1975169f81c113b343b67821554062d2859e9.tar.bz2 |
graphlcd-base can now be compiled by clang, too. simply write 'CXX=clang make' to do so.
Diffstat (limited to 'tools/lcdtestpattern/Makefile')
-rw-r--r-- | tools/lcdtestpattern/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lcdtestpattern/Makefile b/tools/lcdtestpattern/Makefile index 4901534..9b7b905 100644 --- a/tools/lcdtestpattern/Makefile +++ b/tools/lcdtestpattern/Makefile @@ -18,11 +18,11 @@ all: $(PRGNAME) # Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXEXTRA) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: -MAKEDEP = $(CXX) -MM -MG +#MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ |