mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
31 lines
675 B
Makefile
31 lines
675 B
Makefile
#
|
|
# (c) 2005-2007 Laurent Vivier <Laurent@lvivier.info>
|
|
#
|
|
|
|
TOP = $(shell pwd)
|
|
|
|
VPATH=$(TOP)
|
|
|
|
TARGET = native
|
|
|
|
CFLAGS += -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar
|
|
ifeq ($(TARGET), m68k-linux)
|
|
68000FLAGS = -m68000 -Wa,-m68000
|
|
CFLAGS += -fpic -O2 -Os
|
|
endif
|
|
|
|
CPPFLAGS = -DFATFREE -DNOBYFOUR -DBUILDFIXED -DNO_GZCOMPRESS -DDYNAMIC_CRC_TABLE
|
|
|
|
LIBRARY = libgzip.a
|
|
|
|
SOURCES = inflate.c adler32.c inftrees.c zutil.c inffast.c crc32.c
|
|
|
|
HEADERS = deflate.h inffast.h inflate.h inftrees.h zconf.h zlib.h zutil.h
|
|
|
|
all:
|
|
test -d $(TARGET) || mkdir $(TARGET)
|
|
cd $(TARGET) && make -f $(TOP)/Makefile $(LIBRARY) TOP=$(TOP)
|
|
|
|
include $(TOP)/../tools.mk
|
|
include $(TOP)/../Rules.mk
|