loaders: Add forgotten GP_ProgressCallbackDone().
[gfxprim.git] / app.mk
blob0b301dfbf1f57763876bcbc38bf58442df97adc7
1 ifndef APPS
2 $(error APPS not defined, fix your library Makefile)
3 endif
5 LDLIBS+=-lpng -ljpeg -lm -ldl
7 all: $(APPS)
9 CLEAN+=$(APPS)
11 %: %.o
12 ifdef VERBOSE
13 $(CC) $(CFLAGS) $(LDFLAGS) -Wl,--start-group $(LDLIBS) $^ -Wl,--end-group -o $@
14 else
15 @echo "LD $@"
16 @$(CC) $(CFLAGS) $(LDFLAGS) -Wl,--start-group $(LDLIBS) $^ -Wl,--end-group -o $@
17 endif