kolibrios-gitea/programs/develop/libraries/zlib/Makefile

47 lines
929 B
Makefile
Raw Normal View History

# Makefile for zlib
# Copyright (C) 1995-2010 Jean-loup Gailly.
# For conditions of distribution and use, see copyright notice in zlib.h
CC=gcc
CPP=gcc -E
CFLAGS= -O3 -c -fomit-frame-pointer
LDIMPORT:= -nostdlib
LDFLAGS:= -shared -s -T ../newlib/dll.lds -Map map --image-base 0
INCLUDES= -I../newlib/include
LIBPATH:= -L../newlib
LIBS:= -lamz -lgcc -lcimp
AR=ar rc
OBJC = adler32.o compress.o crc32.o deflate.o \
gzclose.o gzlib.o gzread.o gzwrite.o \
infback.o inffast.o inflate.o inftrees.o \
trees.o uncompr.o zutil.o
# to use the asm code: make OBJA=match.o, PIC_OBJA=match.lo
OBJA =
OBJS = $(OBJC) $(OBJA)
all: libz.a libz.dll
libz.a: $(OBJS)
$(AR) $@ $(OBJS)
libz.dll: $(OBJECTS) Makefile
dlltool -d zlib.def -Dlibz.dll -e exports.o -l libzimp.a
ld $(LDFLAGS) $(LDIMPORT) --exclude-all-symbols $(LIBPATH) -o $@ $(OBJS) exports.o $(LIBS)
%.o: %.c Makefile
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<