Makefile: fix warnings when linking with clang++
[experiments/opencv_trail_effect.git] / Makefile
index de166de..6bb3c15 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -18,18 +18,27 @@ CXXFLAGS += -fno-common \
            -Wswitch-enum \
            -Wundef \
            -Wunreachable-code \
            -Wswitch-enum \
            -Wundef \
            -Wunreachable-code \
-           -Wunsafe-loop-optimizations \
-           -Wunused-but-set-variable \
            -Wwrite-strings \
            -Wp,-D_FORTIFY_SOURCE=2 \
            -fstack-protector \
            --param=ssp-buffer-size=4
 
            -Wwrite-strings \
            -Wp,-D_FORTIFY_SOURCE=2 \
            -fstack-protector \
            --param=ssp-buffer-size=4
 
+ifneq ($(CXX),clang++)
+  CXXFLAGS += -Wunsafe-loop-optimizations \
+             -Wunused-but-set-variable
+endif
+
+ifeq ($(CXX),clang++)
+  LDFLAGS += -Qunused-arguments
+endif
+
 CXXFLAGS += $(shell pkg-config --cflags opencv)
 LDLIBS += $(shell pkg-config --libs opencv)
 
 CXXFLAGS += $(shell pkg-config --cflags opencv)
 LDLIBS += $(shell pkg-config --libs opencv)
 
-opencv_trail_effect: $(wildcard *.hpp)
+LINK.o = $(LINK.cpp)
+opencv_trail_effect:
 
 
+opencv_trail_effect.o: $(wildcard *.hpp)
 
 # Some command lines to imitate different trail styles
 
 
 # Some command lines to imitate different trail styles
 
@@ -46,7 +55,7 @@ average: opencv_trail_effect
        ./opencv_trail_effect -l 10 -s background -d average -B
 
 clean:
        ./opencv_trail_effect -l 10 -s background -d average -B
 
 clean:
-       rm -f opencv_trail_effect vgdump gtk.suppression
+       rm -f *.o opencv_trail_effect vgdump gtk.suppression
 
 test: opencv_trail_effect
        [ -f gtk.suppression ] || wget -nv https://people.gnome.org/~johan/gtk.suppression
 
 test: opencv_trail_effect
        [ -f gtk.suppression ] || wget -nv https://people.gnome.org/~johan/gtk.suppression