lfsdash/Makefile

22 lines
455 B
Makefile

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 freetype2 glfw3 ftgl openal opengl --cflags` -g
LDFLAGS += -lm -lpthread -lSOIL `pkg-config freetype2 glfw3 ftgl openal opengl --libs`
lfsdash: $(OBJS)
$(CC) $(LDFLAGS) $(OBJS) -o $@