breakout/Makefile

15 lines
303 B
Makefile
Raw Normal View History

libs = -lmingw32 -lSDL2main -lSDL2 -lopengl32
includes = -I"C:\SDL2\x32\include"
compiler = gcc
warningLevel = -Wall
sources = *.c
linker = -L"C:\SDL2\x32\lib"
target = Breakout.exe
args = -o
all:
$(compiler) $(warningLevel) $(includes) $(sources) $(linker) $(libs) $(args) $(target)
run:
$(target)