1
0
Fork 0
breakout/Makefile

10 lines
124 B
Makefile
Raw Permalink Normal View History

2015-09-28 17:46:34 +00:00
CC=clang++
all: build run
build:
2015-10-04 12:48:57 +00:00
$(CC) -lSDL2 src/brick.cpp src/scene.cpp src/breakout.cpp -o breakout
2015-09-28 17:46:34 +00:00
run:
./breakout