mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
19 lines
402 B
Makefile
19 lines
402 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/i486-linux-glibc
|
||
|
LIBDIR = $(topdir)/lib/i486-linux-glibc
|
||
|
LIBS =
|
||
|
HOSTCPU = i486-linux-glibc
|
||
|
|
||
|
RANLIB = /usr/bin/ranlib
|
||
|
|
||
|
OPTIMIZE = ./i486-optimize.pl
|
||
|
CLEANUP = ./i486-cleanup.pl
|
||
|
LDFLAGS = -Lhost-native
|
||
|
|
||
|
SYN68K_CFLAGS = -O2 -fomit-frame-pointer
|