demos: spiv: Update cpu counter for multithread filters.
[gfxprim.git] / app.mk
blobc7435055a8f35db480dab2f81b206e0130c1f9da
1 LDLIBS+=-lm -ldl
3 ALL+=$(APPS)
4 CLEAN+=$(APPS)
6 %: %.o
7 ifdef VERBOSE
8 $(CC) $(CFLAGS) $(LDFLAGS) -Wl,--start-group $(LDLIBS) $^ -Wl,--end-group -o $@
9 else
10 @echo "LD $@"
11 @$(CC) $(CFLAGS) $(LDFLAGS) -Wl,--start-group $(LDLIBS) $^ -Wl,--end-group -o $@
12 endif