From 3eddcf2ac5c471da6eff765732cee749310abfbd Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 14 Aug 2012 20:33:58 -0400 Subject: [PATCH] silence spurious clang warning --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index c9800f1..0f30f5e 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,10 @@ ifeq (${CXX}, g++) CXXFLAGS += -Wno-missing-field-initializers endif +ifeq (${CXX}, clang++) + CXXFLAGS += -Wno-unused-macros +endif + LDFLAGS := -s -Wl,--as-needed ${LDFLAGS} LDLIBS := ${shell pkg-config --libs ${GTK} ${VTE}}