reinette-II-plus/Makefile
ArthurFerreira2 8c2c38d6ed
v0.2b
fixed HGR fringing
fixed fwrite / fclose causing SEG faults under Linux
added monochrome switch - only for HRG
Function keys have been re-mapped - see README.md for details
you can save disk 0 and disk 1 now
disk filesnames are now displayed on the title bar
added puce6502DumpRegs() and puce6502DumpPage() for troubleshooting
cleaned code, added more comments
2020-08-10 23:09:33 +02:00

14 lines
286 B
Makefile

LIBS = -lSDL2
FLAGS = -std=c99 -pedantic -Wpedantic -Wall -O3 -Werror
# 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+