mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-29 03:50:27 +00:00
18 lines
419 B
Makefile
18 lines
419 B
Makefile
CC = gcc
|
|
CFLAGS = -O2 -g -Wall -I$(topdir)/include $(LOCAL_CFLAGS)
|
|
|
|
LIB_CC = gcc -b i486-linuxaout
|
|
LIB_CFLAGS = -O2 -g -Wall -I$(topdir)/include $(LOCAL_CFLAGS)
|
|
|
|
OFILE_DIR = obj/i486-linux-a.out
|
|
LIBDIR = $(topdir)/lib/i486-linux-a.out
|
|
LIBS =
|
|
HOSTCPU = i486-linux-a.out
|
|
|
|
RANLIB = /usr/bin/ranlib
|
|
|
|
OPTIMIZE = ./i486-optimize.pl
|
|
CLEANUP = ./i486-cleanup.pl
|
|
LDFLAGS = -Lhost-native
|
|
SYN68K_CFLAGS = -O2 -fomit-frame-pointer
|