X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=win%2Fmakefile;h=8f45dd3aedab7b3437a3492395a69386be9ad563;hp=2ff3d313cd5f0bdf38414649147836a97c69261a;hb=f0128dd11d08d79384a97a13e44476769b061f4f;hpb=7eeb1efed000ed90d27018fd717301096daf65e4 diff --git a/win/makefile b/win/makefile index 2ff3d31..8f45dd3 100644 --- a/win/makefile +++ b/win/makefile @@ -1,5 +1,5 @@ # This file is part of the YAZ toolkit. -# Copyright (C) 1995-2008 Index Data +# Copyright (C) 1995-2009 Index Data # # Programmed by # Heikki Levanto & Adam Dickmeiss @@ -10,7 +10,7 @@ DEBUG=0 # 0 for release, 1 for debug USE_MANIFEST = 0 # TCL -TCL="C:\Tcl\bin\tclsh84.exe" +TCL="C:\Tcl\bin\tclsh85.exe" #TCL="C:\Program Files\Tcl\bin\tclsh83.exe" HAVE_TCL=1 @@ -25,11 +25,11 @@ ICU_DIR = c:\icu # libxslt HAVE_LIBXSLT=1 -LIBXSLT_DIR=c:\libxslt-1.1.23+.win32 +LIBXSLT_DIR=c:\libxslt-1.1.24.win32 # libxml2 HAVE_LIBXML2=1 -LIBXML2_DIR=c:\libxml2-2.6.32+.win32 +LIBXML2_DIR=c:\libxml2-2.7.1.win32 # zlib compression (used by libxml2) ZLIB_DIR = c:\zlib-1.2.3.win32 @@ -60,8 +60,6 @@ nsis: nsishelp: $(NSIS) -generate: generated_files - # Directories # The current directory is supposed to be something like # ..../yaz/win, everything is relative to that @@ -405,6 +403,7 @@ MISC_OBJS= \ $(OBJDIR)\ber_oid.obj \ $(OBJDIR)\ber_tag.obj \ $(OBJDIR)\dumpber.obj \ + $(OBJDIR)\errno.obj \ $(OBJDIR)\odr.obj \ $(OBJDIR)\odr_any.obj \ $(OBJDIR)\odr_bit.obj \ @@ -445,6 +444,7 @@ MISC_OBJS= \ $(OBJDIR)\snprintf.obj \ $(OBJDIR)\marc8.obj \ $(OBJDIR)\marc8r.obj \ + $(OBJDIR)\iso5426.obj \ $(OBJDIR)\record_conv.obj \ $(OBJDIR)\retrieval.obj \ $(OBJDIR)\libxml2_error.obj \ @@ -495,6 +495,8 @@ MISC_OBJS= \ $(OBJDIR)\iconv_encode_marc8.obj \ $(OBJDIR)\iconv_decode_marc8.obj \ $(OBJDIR)\iconv_encode_wchar.obj \ + $(OBJDIR)\iconv_decode_iso5426.obj \ + $(OBJDIR)\iconv_decode_danmarc.obj \ $(OBJDIR)\mutex.obj \ $(OBJDIR)\sc.obj @@ -656,12 +658,13 @@ GENERATED_H_FILES= \ $(ILL_CORE_H_FILES) \ $(ITEM_REQ_H_FILES) -generated_files: \ +generate: \ $(GENERATED_H_FILES) \ $(GENERATED_C_FILES) \ $(SRCDIR)\diagsrw.c \ $(SRCDIR)\diagbib1.c \ - $(SRCDIR)\diagsru_update.c + $(SRCDIR)\diagsru_update.c \ + $(INCLDIR)\yaz\yaz-version.h # Compiling @@ -755,6 +758,10 @@ $(SRCDIR)\marc8r.c: $(SRCDIR)\codetables.xml $(SRCDIR)\charconv.tcl @cd $(SRCDIR) $(TCL) charconv.tcl -r -p marc8r codetables.xml -o marc8r.c +$(SRCDIR)\iso5426.c: $(SRCDIR)\codetables-iso5426.xml $(SRCDIR)\charconv.tcl + @cd $(SRCDIR) + $(TCL) charconv.tcl -r -p iso5426 codetables-iso5426.xml -o iso5426.c + $(SRCDIR)\oid_std.c: $(SRCDIR)\oid.csv $(SRCDIR)\charconv.tcl @cd $(SRCDIR) $(TCL) oidtoc.tcl $(SRCDIR) oid.csv oid_std.c oid_std.h @@ -771,6 +778,11 @@ $(SRCDIR)\diagsru_update.c: $(SRCDIR)\sru_update.csv @cd $(SRCDIR) $(TCL) csvtosru_update.tcl $(SRCDIR) +$(INCLDIR)\yaz\yaz-version.h: + @cd $(SRCDIR) + $(TCL) mk_version.tcl $(ROOTDIR)/configure.ac $(INCLDIR)\yaz\yaz-version.h + + !endif !if $(HAVE_BISON)