Add header files to Automake instructions

This commit is contained in:
Pradana AUMARS 2021-06-27 16:56:02 +02:00
parent e10599f19a
commit d96d7485e5
1 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,10 @@ bin_PROGRAMS = pong
pong_SOURCES = \
main.c \
pong.c \
pong.h \
ball.c \
racket.c
ball.h \
racket.c \
racket.h
pong_CFLAGS = $(SDL_CFLAGS)
pong_LDFLAGS = $(SDL_LIBS)