lfsdash/Makefile

22 lines
407 B
Makefile
Raw Permalink Normal View History

2014-06-28 22:49:09 +00:00
SRCS := lfsdash.c
SRCS += audio.c
SRCS += cars.c
SRCS += config.c
SRCS += gauge.c
SRCS += insim.c
SRCS += network_worker.c
SRCS += outgauge.c
SRCS += queue.c
SRCS += socket.c
SRCS += text.c
SRCS += timer.c
SRCS += worker.c
OBJS := $(SRCS:.c=.o)
CFLAGS += `pkg-config libglfw ftgl openal --cflags` -g
LDFLAGS += `pkg-config libglfw ftgl openal --libs` -g
lfsdash: $(OBJS)
$(CC) $(LDFLAGS) $(OBJS) -o $@