1
0
Files
demo6_palette/Makefile
2024-07-24 12:35:04 +02:00

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