mirror of
https://github.com/ArthurFerreira2/reinette-II-plus.git
synced 2024-12-21 20:29:16 +00:00
18 lines
434 B
Makefile
18 lines
434 B
Makefile
CC = gcc
|
|
FLAGS = -std=c99 -pedantic -Wpedantic -Wall -O3
|
|
|
|
LIBS = -lSDL2
|
|
# comment this line if you are under Linux :
|
|
WIN32-LIBS = -lmingw32 -lSDL2main -Wl,-subsystem,windows
|
|
|
|
# comment this line if you are under Linux :
|
|
WIN32-RES = reinetteII+.res
|
|
|
|
reinetteII+: reinetteII+.c puce6502.c $(WIN32-RES)
|
|
$(CC) $^ $(FLAGS) $(WIN32-LIBS) $(LIBS) -o $@
|
|
|
|
reinetteII+.res: reinetteII+.rc
|
|
windres $^ -O coff -o $(WIN32-RES)
|
|
|
|
all: reinetteII+
|