mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
25 lines
611 B
Makefile
25 lines
611 B
Makefile
#
|
|
# (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
#
|
|
|
|
TOP = $(shell pwd)
|
|
VPATH=$(TOP)
|
|
|
|
CFLAGS = -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic -g
|
|
CPPFLAGS = -I$(TOP)/../libfloppy -I$(TOP)/../libscsi -I$(TOP)/../libblock \
|
|
-I$(TOP)/../libblock -I$(TOP)/../libiso9660 -I$(TOP)/../libmacos \
|
|
-I$(TOP)/../libcontainer -I$(TOP) -I$(TOP)/../libgzip
|
|
|
|
LIBRARY = libstream.a
|
|
|
|
SOURCES = stream_close.c stream_open.c stream_read.c stream_lseek.c \
|
|
stream_uncompress.c gzio.c stream_fstat.c
|
|
|
|
HEADERS = libstream.h
|
|
|
|
DISTFILES = $(SOURCES) $(HEADERS)
|
|
|
|
all: $(LIBRARY)
|
|
|
|
include $(TOP)/../Rules.mk
|