mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
21 lines
421 B
Makefile
21 lines
421 B
Makefile
#
|
|
# (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
#
|
|
|
|
TOP=$(shell pwd)
|
|
VPATH=$(TOP)
|
|
|
|
CFLAGS = -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic -O2 -m68000 -Wa,-m68000 -Os
|
|
CPPFLAGS = -I$(TOP)/../libstream
|
|
|
|
LIBRARY = libcontainer.a
|
|
|
|
SOURCES = container_close.c container_lseek.c container_open.c \
|
|
container_read.c container_fstat.c
|
|
|
|
HEADERS = libcontainer.h
|
|
|
|
all: $(LIBRARY)
|
|
|
|
include $(TOP)/../Rules.mk
|