Added files for compilation and basic information (also included dll)
This commit is contained in:
14
Makefile
Normal file
14
Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
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)
|
Reference in New Issue
Block a user