Get this at least compiling again

This commit is contained in:
twinaphex 2016-09-19 18:12:35 +02:00
parent 4675cb3dca
commit 967ad97fab
2 changed files with 7 additions and 4 deletions

View File

@ -38,10 +38,6 @@ else ifeq ($(platform),android_mips)
include $(BUILD_DIR)/Makefile.android_mips
else
ifneq ($(EMSCRIPTEN),)
platform = emscripten
endif
ifeq ($(platform),)
platform = unix
ifeq ($(shell uname -a),)
@ -274,6 +270,8 @@ else
CFLAGS += -O3
endif
DEFINES += -DHAVE_STRNDUP -DHAVE_STRDUP
include $(BUILD_DIR)/Makefile.common

View File

@ -44,6 +44,7 @@ SOURCES_C := $(CORE_DIR)/src/arm/arm.c \
$(CORE_DIR)/src/gb/timer.c \
$(CORE_DIR)/src/gb/video.c \
$(CORE_DIR)/src/gb/renderers/software.c \
$(CORE_DIR)/src/gba/renderers/tile-cache.c \
$(CORE_DIR)/src/gba/savedata.c \
$(CORE_DIR)/src/gba/io.c \
$(CORE_DIR)/src/gba/bios.c \
@ -51,6 +52,7 @@ SOURCES_C := $(CORE_DIR)/src/arm/arm.c \
$(CORE_DIR)/src/gba/input.c \
$(CORE_DIR)/src/gba/audio.c \
$(CORE_DIR)/src/gba/memory.c \
$(CORE_DIR)/src/core/cheats.c \
$(CORE_DIR)/src/gba/cheats.c \
$(CORE_DIR)/src/gba/cheats/gameshark.c \
$(CORE_DIR)/src/gba/cheats/parv3.c \
@ -80,6 +82,9 @@ SOURCES_C := $(CORE_DIR)/src/arm/arm.c \
$(CORE_DIR)/src/util/hash.c \
$(CORE_DIR)/src/util/configuration.c \
$(CORE_DIR)/src/util/circle-buffer.c \
$(CORE_DIR)/src/util/patch.c \
$(CORE_DIR)/src/util/patch-ips.c \
$(CORE_DIR)/src/util/patch-ups.c \
$(CORE_DIR)/src/third-party/blip_buf/blip_buf.c \
$(CORE_DIR)/src/util/crc32.c