From 6ce1975169f81c113b343b67821554062d2859e9 Mon Sep 17 00:00:00 2001 From: mrwastl Date: Sat, 9 Jun 2012 00:42:44 +0200 Subject: graphlcd-base can now be compiled by clang, too. simply write 'CXX=clang make' to do so. --- tools/showtext/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/showtext') diff --git a/tools/showtext/Makefile b/tools/showtext/Makefile index 1da8fb5..542482a 100644 --- a/tools/showtext/Makefile +++ b/tools/showtext/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) > $@ -- cgit v1.2.3