1*83aea518Smseidel--- misc/zlib-1.3.1/makefile.mk Fri Mar 14 10:17:06 2008 2*83aea518Smseidel+++ misc/build/zlib-1.3.1/makefile.mk Fri Mar 14 10:16:56 2008 3*83aea518Smseidel@@ -1 +1,82 @@ 4*83aea518Smseidel-dummy 5*83aea518Smseidel+#************************************************************************* 6*83aea518Smseidel+# 7*83aea518Smseidel+# Licensed to the Apache Software Foundation (ASF) under one 8*83aea518Smseidel+# or more contributor license agreements. See the NOTICE file 9*83aea518Smseidel+# distributed with this work for additional information 10*83aea518Smseidel+# regarding copyright ownership. The ASF licenses this file 11*83aea518Smseidel+# to you under the Apache License, Version 2.0 (the 12*83aea518Smseidel+# "License"); you may not use this file except in compliance 13*83aea518Smseidel+# with the License. You may obtain a copy of the License at 14*83aea518Smseidel+# 15*83aea518Smseidel+# http://www.apache.org/licenses/LICENSE-2.0 16*83aea518Smseidel+# 17*83aea518Smseidel+# Unless required by applicable law or agreed to in writing, 18*83aea518Smseidel+# software distributed under the License is distributed on an 19*83aea518Smseidel+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 20*83aea518Smseidel+# KIND, either express or implied. See the License for the 21*83aea518Smseidel+# specific language governing permissions and limitations 22*83aea518Smseidel+# under the License 23*83aea518Smseidel+# 24*83aea518Smseidel+#************************************************************************* 25*83aea518Smseidel+ 26*83aea518Smseidel+PRJ=..$/..$/..$/.. 27*83aea518Smseidel+ 28*83aea518Smseidel+PRJNAME=zlib 29*83aea518Smseidel+TARGET=zlib 30*83aea518Smseidel+LIBTARGET=NO 31*83aea518Smseidel+EXTERNAL_WARNINGS_NOT_ERRORS=TRUE 32*83aea518Smseidel+ 33*83aea518Smseidel+# --- Settings ----------------------------------------------------- 34*83aea518Smseidel+ 35*83aea518Smseidel+.INCLUDE : settings.mk 36*83aea518Smseidel+ 37*83aea518Smseidel+# --- Files -------------------------------------------------------- 38*83aea518Smseidel+ 39*83aea518Smseidel+INCEXT=contrib$/minizip 40*83aea518Smseidel+ 41*83aea518Smseidel+SLOFILES= $(SLO)$/adler32.obj \ 42*83aea518Smseidel+ $(SLO)$/compress.obj \ 43*83aea518Smseidel+ $(SLO)$/deflate.obj \ 44*83aea518Smseidel+ $(SLO)$/crc32.obj \ 45*83aea518Smseidel+ $(SLO)$/inffast.obj \ 46*83aea518Smseidel+ $(SLO)$/inflate.obj \ 47*83aea518Smseidel+ $(SLO)$/inftrees.obj \ 48*83aea518Smseidel+ $(SLO)$/trees.obj \ 49*83aea518Smseidel+ $(SLO)$/zutil.obj \ 50*83aea518Smseidel+ $(SLO)$/unzip.obj \ 51*83aea518Smseidel+ $(SLO)$/ioapi.obj 52*83aea518Smseidel+ 53*83aea518Smseidel+ 54*83aea518Smseidel+LIB1TARGET=$(SLB)$/$(TARGET).lib 55*83aea518Smseidel+LIB1ARCHIV=$(LB)$/lib$(TARGET).a 56*83aea518Smseidel+LIB1OBJFILES=$(SLOFILES) 57*83aea518Smseidel+ 58*83aea518Smseidel+.IF "$(BUILD_X64)"!="" 59*83aea518Smseidel+SLOFILES_X64= $(SLO_X64)$/adler32.obj \ 60*83aea518Smseidel+ $(SLO_X64)$/compress.obj \ 61*83aea518Smseidel+ $(SLO_X64)$/deflate.obj \ 62*83aea518Smseidel+ $(SLO_X64)$/crc32.obj \ 63*83aea518Smseidel+ $(SLO_X64)$/inffast.obj \ 64*83aea518Smseidel+ $(SLO_X64)$/inflate.obj \ 65*83aea518Smseidel+ $(SLO_X64)$/inftrees.obj \ 66*83aea518Smseidel+ $(SLO_X64)$/trees.obj \ 67*83aea518Smseidel+ $(SLO_X64)$/zutil.obj \ 68*83aea518Smseidel+ $(SLO_X64)$/unzip.obj \ 69*83aea518Smseidel+ $(SLO_X64)$/ioapi.obj 70*83aea518Smseidel+ 71*83aea518Smseidel+LIB1TARGET_X64=$(SLB_X64)$/$(TARGET).lib 72*83aea518Smseidel+LIB1OBJFILES_X64=$(SLOFILES_X64) 73*83aea518Smseidel+.ENDIF # "$(BUILD_X64)"!="" 74*83aea518Smseidel+ 75*83aea518Smseidel+ 76*83aea518Smseidel+# --- Targets ------------------------------------------------------ 77*83aea518Smseidel+ 78*83aea518Smseidel+$(MISC)$/%.c : contrib$/minizip$/%.c 79*83aea518Smseidel+ @echo ------------------------------ 80*83aea518Smseidel+ @echo Making: $@ 81*83aea518Smseidel+ @$(COPY) $< $@ 82*83aea518Smseidel+ 83*83aea518Smseidel+.INCLUDE : set_wntx64.mk 84*83aea518Smseidel+.INCLUDE : target.mk 85*83aea518Smseidel+.INCLUDE : tg_wntx64.mk 86*83aea518Smseidel+ 87