breakout/Makefile

10 lines
124 B
Makefile
Raw Permalink Normal View History

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