jade/SDL2/pong/Makefile
2013-11-10 21:15:30 -05:00

12 lines
143 B
Makefile

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