mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
20 lines
541 B
Makefile
20 lines
541 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 = -g -I$(topdir)/include $(LOCAL_CFLAGS) -D__CHECKER__
|
|
|
|
OFILE_DIR = obj/i486-linux-glibc-debug
|
|
LIBDIR = $(topdir)/lib/i486-linux-glibc-debug
|
|
LIBS =
|
|
HOSTCPU = i486-linux-glibc-debug
|
|
|
|
RANLIB = /usr/bin/ranlib
|
|
|
|
# OPTIMIZE = ./i486-optimize.pl
|
|
CLEANUP = ./i486-cleanup.pl
|
|
LDFLAGS = -Lhost-native
|
|
SYN68K_CFLAGS = $(LIB_CFLAGS)
|