0.1 release
[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
10all: liveinfo
11
12liveinfo: $(OBJS)
13 $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LDLIBS)
14
15clean:
16 $(RM) liveinfo $(OBJS)
17
18.PHONY: all clean