2005-11-08 02:04:54 +00:00
|
|
|
#
|
|
|
|
# (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
|
|
#
|
|
|
|
|
|
|
|
TOP = $(shell pwd)
|
2005-11-16 14:00:27 +00:00
|
|
|
|
2005-11-26 18:28:05 +00:00
|
|
|
CFLAGS = -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic -O2 -m68000 -Wa,-m68000 -Os
|
2005-11-08 02:04:54 +00:00
|
|
|
CPPFLAGS = -I$(TOP) -I$(TOP)/../libmacos -DARCH_M68K
|
|
|
|
|
|
|
|
LIBRARY = libunix.a
|
|
|
|
|
|
|
|
SOURCES = divsi3.S modsi3.S mulsi3.S udivsi3.S umodsi3.S free.c malloc.c \
|
|
|
|
memcpy.c memset.c printf.c putchar.c puts.c read.c sprintf.c \
|
2005-11-12 19:13:52 +00:00
|
|
|
strcpy.c strlen.c strncpy.c vsprintf.c write.c strcmp.c \
|
2005-11-23 22:41:47 +00:00
|
|
|
strncmp.c strtol.c
|
2005-11-08 02:04:54 +00:00
|
|
|
|
|
|
|
HEADERS =
|
|
|
|
|
|
|
|
all: $(LIBRARY)
|
|
|
|
|
2005-11-16 14:00:27 +00:00
|
|
|
include $(TOP)/../Rules.mk
|