EMILE/libunix/Makefile

22 lines
495 B
Makefile
Raw Normal View History

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-08 02:04:54 +00:00
CFLAGS = -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic
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 \
strncmp.c
2005-11-08 02:04:54 +00:00
HEADERS =
all: $(LIBRARY)
2005-11-16 14:00:27 +00:00
include $(TOP)/../Rules.mk