mirror of
https://github.com/ArthurFerreira2/reinette-II-plus.git
synced 2024-12-21 04:29:46 +00:00
8c2c38d6ed
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
14 lines
286 B
Makefile
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+
|