EMILE/libcontainer/Makefile

24 lines
511 B
Makefile
Raw Permalink Normal View History

2005-12-01 14:05:52 +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
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 \
container_read.c container_fstat.c container_init.c \
container_mount.c
2005-12-01 14:05:52 +00:00
HEADERS = libcontainer.h container.h
2005-12-01 14:05:52 +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