jade/sdl_test/Makefile

12 lines
136 B
Makefile
Raw Normal View History

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