mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
24 lines
511 B
Makefile
24 lines
511 B
Makefile
#
|
|
# (c) 2005-2007 Laurent Vivier <Laurent@Vivier.EU>
|
|
#
|
|
|
|
TOP=$(shell pwd)
|
|
VPATH=$(TOP)
|
|
|
|
68000FLAGS = -m68000 -Wa,-m68000
|
|
CFLAGS = -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic -O2 -Os
|
|
CPPFLAGS = -I$(TOP)/../libstream
|
|
|
|
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
|
|
|
|
HEADERS = libcontainer.h container.h
|
|
|
|
all: $(LIBRARY)
|
|
|
|
include $(TOP)/../tools.mk
|
|
include $(TOP)/../Rules.mk
|