1
0
Fork 0
breakout/Makefile

10 lines
110 B
Makefile
Raw Normal View History

2015-09-28 17:46:34 +00:00
CC=clang++
all: build run
build:
2015-09-30 14:55:40 +00:00
$(CC) -lSDL2 src/scene.cpp src/breakout.cpp -o breakout
2015-09-28 17:46:34 +00:00
run:
./breakout