breakout/Makefile

16 lines
383 B
Makefile
Raw Normal View History

libs = -lmingw32 -lSDL2main -lSDL2 -lopengl32 -lSDL2_image -lSDL2_ttf
includes = -I".\include"
compiler = gcc
2018-01-15 22:01:58 +01:00
warningLevel = -Wall -Wno-unused-variable -Wno-unused-but-set-variable
sources = *.c
linker = -L".\lib"
dir = bin
2018-01-15 22:01:58 +01:00
target = Breakout
args = -o
all:
$(compiler) $(warningLevel) $(includes) $(sources) $(linker) $(libs) $(args) $(dir)\$(target)
2018-01-15 22:01:58 +01:00
run:
cd $(dir) && $(target)