slack gksu fix
[pandora_liveinfo.git] / Makefile
CommitLineData
063ae4be 1CC = $(CROSS_COMPILE)gcc
2CFLAGS += -Wall -ggdb
3ifndef DEBUG
4CFLAGS += -O2
5endif
6LDLIBS += -lpthread -lrt
7
8OBJS = main.o fonts.o
9
b7d8fc1a 10all: liveinfo custom
063ae4be 11
12liveinfo: $(OBJS)
13 $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LDLIBS)
14
b7d8fc1a 15custom: custom.c
16 $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)
17
063ae4be 18clean:
3a836137 19 $(RM) liveinfo custom $(OBJS)
063ae4be 20
21.PHONY: all clean