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