jade/SDL2/pong/Makefile

12 lines
143 B
Makefile
Raw Normal View History

2013-11-10 01:19:19 +00:00
all:pong
CC = g++
LDFLAGS = $(shell sdl2-config --libs --cflags) -ldl
pong:
2013-11-11 02:15:30 +00:00
$(CC) -Wno-unused $@.cpp $(LDFLAGS) -o $@
clean:
@rm -f pong
2013-11-10 01:19:19 +00:00