Added Makefile

This commit is contained in:
Armando Rivera 2013-11-09 20:19:19 -05:00
parent 1c7d7f91c7
commit 555bed312f

9
SDL2/pong/Makefile Normal file
View File

@ -0,0 +1,9 @@
all:pong
CC = g++
LDFLAGS = $(shell sdl2-config --libs --cflags) -ldl
pong:
$(CC) $@.cpp $(LDFLAGS) -o $@