BizHawk/waterbox/picodrive/Makefile

10 lines
322 B
Makefile
Raw Normal View History

CCFLAGS := -I. \
2017-07-02 17:47:43 +00:00
-Wall -Werror=pointer-to-int-cast -Werror=int-to-pointer-cast -Werror=implicit-function-declaration \
-std=c99 -fomit-frame-pointer \
2017-07-02 17:47:43 +00:00
-falign-functions=16 \
-DLSB_FIRST -DNDEBUG -DEMU_F68K -D_USE_CZ80
2017-07-02 17:47:43 +00:00
TARGET := picodrive.wbx
SRCS = $(shell find $(ROOT_DIR) -type f -name '*.c')
include ../common.mak