breakout/Makefile

10 lines
88 B
Makefile
Raw Normal View History

2015-09-28 20:46:34 +03:00
CC=clang++
all: build run
build:
$(CC) -lSDL2 main.cpp -o breakout
run:
./breakout