Fixed Makefile to work under mingw

This commit is contained in:
davehein 2018-04-15 21:39:06 -05:00
parent 24403acea2
commit 890efaf191
1 changed files with 2 additions and 0 deletions

View File

@ -24,9 +24,11 @@ TARGET = $(BUILD)/spinsim$(EXT)
SOURCES = spinsim.c spininterp.c spindebug.c pasmsim.c pasmdebug.c pasmsim2.c pasmdebug2.c eeprom.c debug.c gdb.c disasm2.c
ifneq ($(MSYSTEM),MINGW32)
ifneq ($(OS),msys)
SOURCES += conion.c
endif
endif
OBJECTS = $(patsubst %,$(BUILD)/%, $(SOURCES:.c=.o))