mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
18 lines
384 B
Makefile
18 lines
384 B
Makefile
|
CC = gcc
|
||
|
CFLAGS = -O2 -g -Wall -I$(topdir)/include $(LOCAL_CFLAGS)
|
||
|
|
||
|
LIB_CC = gcc
|
||
|
LIB_CFLAGS = -O2 -g -Wall -I$(topdir)/include $(LOCAL_CFLAGS)
|
||
|
|
||
|
OFILE_DIR = obj/i386-next-mach-o
|
||
|
LIBDIR = $(topdir)/lib/i386-next-mach-o
|
||
|
LIBS =
|
||
|
HOSTCPU = i386-next-mach-o
|
||
|
|
||
|
RANLIB = /bin/ranlib
|
||
|
|
||
|
OPTIMIZE = ./i486-optimize.pl
|
||
|
CLEANUP = ./i486-cleanup.pl
|
||
|
LDFLAGS =
|
||
|
SYN68K_CFLAGS = -O2 -fomit-frame-pointer
|