compressionlibs/ziplib/group/tools/zlib.fil
author Peter Fordham <peter.fordham@gmail.com>
Mon, 22 Mar 2010 12:54:15 -0700
branchCompilerCompatibility
changeset 11 8d1ef0d13f16
parent 0 e4d67989cc36
permissions -rw-r--r--
Bug 1697 - Restructed function control flow to aviod branching across initialization.

# Build WLDCOMP, a strange WINC/Win32 hybrid
#

TOOLNAME=zlib
SRCDIR=.

!if "$(CFG)" == "DEB"
VC_CFG="$(TOOLNAME) - Win32 Release"
!else
VC_CFG="$(TOOLNAME) - Win32 Debug"
CFG=REL
!endif

TARGETDIR=$(EPOCROOT)epoc32\release\winc\$(CFG)
TOOL=$(TARGETDIR)\$(TOOLNAME).lib

makelib :
	cd $(SRCDIR)
	echo NMAKE /S /NOLOGO /f $(SRCDIR)\$(TOOLNAME).MAK CFG=DEB
	NMAKE /S /NOLOGO /f $(SRCDIR)\$(TOOLNAME).MAK CFG="$(TOOLNAME) - Win32 Debug"
	echo NMAKE /S /NOLOGO /f $(SRCDIR)\$(TOOLNAME).MAK CFG=REL
	NMAKE /S /NOLOGO /f $(SRCDIR)\$(TOOLNAME).MAK CFG="$(TOOLNAME) - Win32 Release"

do_nothing:
	rem do nothing

#
# The targets invoked by abld...
#

MAKMAKE : do_nothing
FREEZE : do_nothing

LIB : makelib

RESOURCE : do_nothing
CLEANLIB : do_nothing
FINAL : do_nothing
SAVESPACE : do_nothing
BLD : do_nothing

CLEAN : 
	cd $(SRCDIR)
	echo NMAKE /S /NOLOGO /f $(SRCDIR)\$(TOOLNAME).MAK CLEAN CFG=$(VC_CFG)
	NMAKE /S /NOLOGO /f $(SRCDIR)\$(TOOLNAME).MAK CLEAN CFG=$(VC_CFG)
	erase $(TOOL)

RELEASABLES : 
	echo $(TOOL)