reinette-II-plus/Makefile
ArthurFerreira2 bb4c4f0f9a
v0.4 stable
2020-09-06 00:40:24 +02:00

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+