jade/SDL2/pong/Makefile
2013-11-10 23:06:52 -05:00

12 lines
137 B
Makefile

all:pong
CC = g++
LDFLAGS = $(shell sdl2-config --libs --cflags) -ldl
pong:
$(CC) -Wall $@.cpp $(LDFLAGS) -o $@
clean:
@rm -f pong