1
0
Fork 0
breakout/Makefile

10 lines
88 B
Makefile

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