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