pong/src/Makefile.am

17 lines
293 B
Makefile

bin_PROGRAMS = pong
pong_SOURCES = \
main.c \
pong.c \
pong.h \
ball.c \
ball.h \
racket.c \
racket.h \
score.c \
score.h \
text.c \
text.h
pong_CFLAGS = $(SDL_CFLAGS) `pkg-config --cflags SDL2_ttf fontconfig`
pong_LDFLAGS = $(SDL_LIBS) `pkg-config --libs SDL2_ttf fontconfig` -lm