jade/SDL2/pong/Makefile

10 lines
113 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:
$(CC) $@.cpp $(LDFLAGS) -o $@