slack gksu fix
[pandora_liveinfo.git] / Makefile
index fe05688..bc3e5f0 100644 (file)
--- 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