game/Makefile.am
Warwick 7d40aa29c6 Moved away from plain make to autotools
I'm really glad I know a bit about how to use them now with pkg-config (so
much nicer than cmake or that python like thing in my opinion)
2021-02-05 12:38:03 +00:00

8 lines
205 B
Makefile

AUTOMAKE_OPTIONS = subdir-objects
bin_PROGRAMS = Game
Game_SOURCES = \
src/main.cpp
Game_CPPFLAGS = @sdl2_CFLAGS@ @glew_CFLAGS@ @opengl_CFLAGS@
Game_LDFLAGS = @sdl2_LIBS@ @glew_LIBS@ @opengl_LIBS@