mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
19 lines
462 B
Makefile
19 lines
462 B
Makefile
CC = gcc
|
|
CFLAGS = -O2 -g -Wall -I$(topdir)/include $(LOCAL_CFLAGS)
|
|
|
|
LIB_CC = i386-pc-mingw32-gcc
|
|
LIB_CFLAGS = -O6 -finline-functions -g -Wall -I$(topdir)/include $(LOCAL_CFLAGS)
|
|
|
|
OFILE_DIR = obj/i386-pc-mingw32
|
|
LIBDIR = $(topdir)/lib/i386-pc-mingw32
|
|
LIBS =
|
|
HOSTCPU = i386-pc-mingw32
|
|
|
|
AR = ar
|
|
AS = i386-pc-mingw32-gcc -x assembler
|
|
RANLIB = i386-pc-mingw32-ranlib
|
|
|
|
CLEANUP = ./i486-cleanup.pl
|
|
OPTIMIZE = ./i486-optimize.pl
|
|
SYN68K_CFLAGS = -O2 -fomit-frame-pointer
|