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)
8 lines
205 B
Makefile
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@
|