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

12 lines
136 B
Makefile

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