2005-12-01 14:05:52 +00:00
|
|
|
#
|
2013-09-05 12:39:22 +00:00
|
|
|
# (c) 2005-2007 Laurent Vivier <Laurent@Vivier.EU>
|
2005-12-01 14:05:52 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
TOP=$(shell pwd)
|
|
|
|
VPATH=$(TOP)
|
|
|
|
|
2006-01-24 12:25:27 +00:00
|
|
|
68000FLAGS = -m68000 -Wa,-m68000
|
|
|
|
CFLAGS = -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic -O2 -Os
|
2005-12-01 22:13:24 +00:00
|
|
|
CPPFLAGS = -I$(TOP)/../libstream
|
2005-12-01 14:05:52 +00:00
|
|
|
|
|
|
|
LIBRARY = libcontainer.a
|
|
|
|
|
|
|
|
SOURCES = container_close.c container_lseek.c container_open.c \
|
2008-04-20 16:20:54 +00:00
|
|
|
container_read.c container_fstat.c container_init.c \
|
|
|
|
container_mount.c
|
2005-12-01 14:05:52 +00:00
|
|
|
|
2008-04-20 16:20:54 +00:00
|
|
|
HEADERS = libcontainer.h container.h
|
2005-12-01 14:05:52 +00:00
|
|
|
|
2005-12-01 22:13:24 +00:00
|
|
|
all: $(LIBRARY)
|
2005-12-01 14:05:52 +00:00
|
|
|
|
2007-09-06 22:09:11 +00:00
|
|
|
include $(TOP)/../tools.mk
|
2005-12-01 14:05:52 +00:00
|
|
|
include $(TOP)/../Rules.mk
|