6 lines
131 B
Makefile
6 lines
131 B
Makefile
breakout_s = breakout.c
|
|
breakout_c = breakout
|
|
all: breakout.c
|
|
clang $(breakout_s) -l SDL2 -lGLU -lGL -o $(breakout_c)
|
|
./breakout
|