12 lines
322 B
Makefile
12 lines
322 B
Makefile
name = paleta
|
|
executable = $(name)
|
|
source = *.cpp
|
|
|
|
windows:
|
|
g++ $(source) -std=c++11 -Wall -lmingw32 -lSDL2main -lSDL2 -mwindows -o $(executable).exe
|
|
|
|
linux:
|
|
g++ $(source) -std=c++11 -Wall -lSDL2 -o $(executable).o
|
|
|
|
macos:
|
|
clang++ $(source) -std=c++11 -Wall -lSDL2 -ffunction-sections -fdata-sections -o $(executable).o
|