X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pandora_liveinfo.git;a=blobdiff_plain;f=Makefile;h=bc3e5f0dbf9c4f0a902423afeaff8d415c1dccaf;hp=fe05688bd4009acc79c6f4dd670eda22e312d540;hb=HEAD;hpb=063ae4be6676b3b6c48183e3753238b05547b124 diff --git a/Makefile b/Makefile index fe05688..bc3e5f0 100644 --- a/Makefile +++ b/Makefile @@ -7,12 +7,15 @@ LDLIBS += -lpthread -lrt OBJS = main.o fonts.o -all: liveinfo +all: liveinfo custom liveinfo: $(OBJS) $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LDLIBS) +custom: custom.c + $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) + clean: - $(RM) liveinfo $(OBJS) + $(RM) liveinfo custom $(OBJS) .PHONY: all clean