jade/SDL2/pong/Makefile
2013-11-09 20:19:19 -05:00

10 lines
113 B
Makefile

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