1
0
Fork 0
breakout/Makefile

10 lines
124 B
Makefile

CC=clang++
all: build run
build:
$(CC) -lSDL2 src/brick.cpp src/scene.cpp src/breakout.cpp -o breakout
run:
./breakout