From d96d7485e58ea21699cb2af72df5946ca792ce4d Mon Sep 17 00:00:00 2001 From: Pradana AUMARS Date: Sun, 27 Jun 2021 16:56:02 +0200 Subject: [PATCH] Add header files to Automake instructions --- src/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 4b20cfa..8c71a01 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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)