mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
22 lines
581 B
Makefile
22 lines
581 B
Makefile
# NOTE: we define __CHECKER__ so that we get a frame pointer and other
|
|
# good stuff. We're not actually using checker. D'oh.
|
|
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/powerpc-linux-glibc
|
|
LIBDIR = $(topdir)/lib/powerpc-linux-glibc
|
|
LIBS =
|
|
HOSTCPU = powerpc-linux-glibc
|
|
|
|
RANLIB = /usr/bin/ranlib
|
|
|
|
# OPTIMIZE = ./powerpc-optimize.pl
|
|
# CLEANUP = ./powerpc-cleanup.pl
|
|
# LDFLAGS = -Lhost-native
|
|
SYN68K_CFLAGS = $(LIB_CFLAGS) -O2 -fomit-frame-pointer
|
|
|
|
NO_NATIVE = TRUE
|