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