X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=win%2Fmakefile;h=354982bf3b462472139e48735a3b64a51dee2d0d;hb=bec71e151d306edbc5f58e19c7c139a196e867e9;hp=4cbeb7816af966c0fa87764bd0ae4068dc18af00;hpb=9b24380fadc11b19041f1cde6da2ce02b7bf3572;p=yaz-moved-to-github.git diff --git a/win/makefile b/win/makefile index 4cbeb78..354982b 100644 --- a/win/makefile +++ b/win/makefile @@ -1,5 +1,5 @@ # makefile.mak - makefile for MS NMAKE -# $Id: makefile,v 1.42 2002-06-05 21:11:00 adam Exp $ +# $Id: makefile,v 1.47 2002-09-06 20:04:49 adam Exp $ # # Programmed by # HL: Heikki Levanto, Index Data @@ -25,6 +25,14 @@ DEBUG=0 # 0 for release, 1 for debug +# iconv +HAVE_ICONV=0 +ICONV_DIR = c:\libiconv-1.7.0.1 + +# TCL +TCL="C:\program files\Tcl\bin\tclsh83.exe" +HAVE_TCL=1 + default: all all: dirs generate dll client ztest zoomsh @@ -105,6 +113,17 @@ zoomsh: $(ZOOMSH) $(ZOOMTST1) $(ZOOMTST2) $(ZOOMTST3) \ ############### Compiler and linker options ########################################################### +!if $(HAVE_ICONV) +ICONV_DEF= \ + /D HAVE_ICONV_H=1 \ + /I"$(ICONV_DIR)\include" +ICONV_LIB= \ + $(ICONV_DIR)\lib\iconv.lib +!else +ICONV_DEF= \ + /D HAVE_ICONV_H=0 +ICONV_LIB= +!endif ### C and CPP compiler (the same thing) # Note: $(CPP) has already been defined in the environment @@ -112,6 +131,7 @@ zoomsh: $(ZOOMSH) $(ZOOMTST1) $(ZOOMTST2) $(ZOOMTST3) \ COMMON_C_OPTIONS= \ /nologo /W3 /GX /FD /c \ + $(ICONV_DEF) \ /D "_WINDOWS" \ /D "WIN32" \ /FR"$(OBJDIR)\\" \ @@ -151,7 +171,8 @@ LINK=link.exe LINK_LIBS= kernel32.lib user32.lib gdi32.lib \ advapi32.lib uuid.lib \ - wsock32.lib advapi32.lib + wsock32.lib advapi32.lib \ + $(ICONV_LIB) COMMON_LNK_OPTIONS= /nologo \ /subsystem:windows \ @@ -168,10 +189,6 @@ ZOOMSH_LINK_OPTIONS = /subsystem:console SERVER_LINK_OPTIONS = -lib ZTEST_LINK_OPTIONS = /subsystem:console -# TCL -TCL="C:\Program Files\Tcl\bin\tclsh83.exe" -HAVE_TCL=1 - COMMON_TCL_OPTIONS= ..\util\yaz-comp -I$(INCLDIR) -i yaz # Final opt variables @@ -292,7 +309,9 @@ YAZ_UTIL_OBJS= \ $(OBJDIR)\tpath.obj \ $(OBJDIR)\wrbuf.obj \ $(OBJDIR)\xmalloc.obj \ - $(OBJDIR)\matchstr.obj + $(OBJDIR)\matchstr.obj \ + $(OBJDIR)\siconv.obj + YAZ_ZUTIL_OBJS= \ $(OBJDIR)\diagbib1.obj \ @@ -832,7 +851,22 @@ $(ILL_OBJS): $(ILL_CORE_FILES) $(ITEM_REQ_FILES) ########################################################### # # $Log: makefile,v $ -# Revision 1.42 2002-06-05 21:11:00 adam +# Revision 1.47 2002-09-06 20:04:49 adam +# debug=0 +# +# Revision 1.46 2002/08/30 11:28:01 adam +# Remove EXPAT reader +# +# Revision 1.45 2002/08/27 22:33:30 adam +# siconv added +# +# Revision 1.44 2002/07/25 14:19:18 adam +# EXPAT support on WIN32 +# +# Revision 1.43 2002/07/25 13:45:30 adam +# iconv.dll +# +# Revision 1.42 2002/06/05 21:11:00 adam # NSIS bz2 # # Revision 1.41 2002/06/04 08:29:53 adam