1 # makefile.mak - makefile for MS NMAKE
2 # $Id: makefile,v 1.26 2001-09-27 12:09:18 adam Exp $
5 # HL: Heikki Levanto, Index Data
7 # Log at the end of the file
10 # - Move MS-C's whatnots into win direcotry
11 # - The TCL script produces C and H files in the same dir as the
12 # ASN files. H's are copied to INCL, C's are left there.
13 # They should be produced into OBJ...
15 # Envoronment problems
16 # - You need to have the proper path and environment for VC set
17 # up. There is a bat file VCVARS32.BAT that sets most of it up
18 # for you. You can find this somewhere near DevStudio\VC\BIN
19 # - RegSvr32 must also be along the path, often in WINDOWS\SYSTEM
20 # - TCL has to be available too, if compiling for NEW_Z3950
22 ###########################################################
23 ############### Parameters
24 ###########################################################
26 DEBUG=1 # 0 for release, 1 for debug
28 NEW_Z3950=1 # 0= use old asn files
29 # 1= generate files from *.asn (needs tcl)
34 all: dirs yaz_date_h proto_h dll client ztest
36 generate: generated_files
38 ###########################################################
39 ############### Directories
40 ###########################################################
41 # The current directory is supposed to be something like
42 # ..../Yaz/Win, everything is relative to that
43 ROOTDIR=.. # The home of Yaz
45 INCLDIR=$(ROOTDIR)\include # our includes
46 LIBDIR=$(ROOTDIR)\lib # We produce .lib, .exp etc there
47 BINDIR=$(ROOTDIR)\bin # We produce exes and dlls there
48 WINDIR=$(ROOTDIR)\win # all these Win make things
49 OBJDIR=$(WINDIR)\obj # where we store intermediate files
50 UNIXDIR=$(ROOTDIR)\unix # corresponding unix things
51 SRCDIR=$(ROOTDIR) # for the case we move them under src
54 COMSTACKDIR=$(SRCDIR)\COMSTACK
56 UTILDIR=$(SRCDIR)\UTIL
57 ZUTILDIR=$(SRCDIR)\ZUTIL
58 RETDIR=$(SRCDIR)\RETRIEVAL
59 Z3950DIR=$(SRCDIR)\Z39.50
63 CLIENTDIR=$(SRCDIR)\CLIENT
64 SERVERDIR=$(SRCDIR)\SERVER
65 ZTESTDIR=$(SRCDIR)\ZTEST
67 TMPDIR=$(ROOTDIR)\win\tmp
70 ###########################################################
71 ############### Targets - what to make
72 ###########################################################
76 IMPLIB=$(LIBDIR)\Yaz.lib
78 CLIENT=$(BINDIR)\yaz-client.exe
79 ZTEST=$(BINDIR)\yaz-ztest.exe
80 PROTOH=$(INCLDIR)\yaz\proto.h
81 YAZ_DATE_H=$(INCLDIR)\yaz\yaz-date.h
83 # shortcut names defined here
88 yaz_date_h: $(YAZ_DATE_H)
90 ###########################################################
91 ############### Compiler and linker options
92 ###########################################################
95 ### C and CPP compiler (the same thing)
96 # Note: $(CPP) has already been defined in the environment
97 # (if you set things up right!)
100 /nologo /W3 /GX /FD /c \
101 /D "YAZ_MODULE_ill=1" \
102 /D "WIN32" /D "_WINDOWS" \
109 /I"$(SRCDIR)\include"
119 # /W3 = warning level
120 # /GX = Enable exception handling
121 # /FD = Generate file dependencies (what ever they are)
122 # /c = compile without linking
123 # /FR = Generate browse info (.sbr file that gets combined into .bsc)
124 # /Fo = object file name (or at least path)
125 # /Fd = debug database name (or path)
126 # /MD = Runtime library: Multithread DLL
127 # /MDd = Runtime library: Multithread DLL (debug)
128 # /Od = Disable optimising (debug)
129 # /O2 = Optimize for speed
130 # /YX = Automatic use of precomipled headers
131 # /Gm = Minimal rebuild (some cpp class stuff)
132 # /Zi = Program database for debuggers
133 # /ZI = Pgm database with special "edit&continue" stuff - not available in C5
139 LINK_LIBS= kernel32.lib user32.lib gdi32.lib \
140 advapi32.lib uuid.lib \
141 wsock32.lib advapi32.lib
143 COMMON_LNK_OPTIONS= /nologo \
148 DEBUG_LNK_OPTIONS= /debug
150 RELEASE_LNK_OPTIONS= /pdb:none
152 DLL_LINK_OPTIONS= /dll
153 CLIENT_LINK_OPTIONS = /subsystem:console
154 SERVER_LINK_OPTIONS = -lib
155 ZTEST_LINK_OPTIONS = /subsystem:console
158 TCL="C:\Program Files\Tcl\bin\tclsh83.exe"
161 COMMON_TCL_OPTIONS= ..\util\yaz-comp -I$(INCLDIR) -i yaz
163 # Final opt variables
165 COPT= $(COMMON_C_OPTIONS) $(DEBUG_C_OPTIONS) $(COMMON_C_INCLUDES)
166 MTLOPT= $(COMMON_MTL_OPTIONS) $(DEBUG_MTL_OPTIONS)
167 RCOPT= $(COMMON_RC_OPTIONS) $(DEBUG_RC_OPTIONS)
168 LNKOPT= $(COMMON_LNK_OPTIONS) $(DEBUG_LNK_OPTIONS) $(LNK_LIBS)
169 TCLOPT= $(COMMON_TCL_OPTIONS)
172 COPT= $(COMMON_C_OPTIONS) $(RELEASE_C_OPTIONS) $(COMMON_C_INCLUDES)
173 MTLOPT= $(COMMON_MTL_OPTIONS) $(RELEASE_MTL_OPTIONS)
174 RCOPT= $(COMMON_RC_OPTIONS) $(RELEASE_RC_OPTIONS)
175 LNKOPT= $(COMMON_LNK_OPTIONS) $(RELEASE_LNK_OPTIONS) $(LNK_LIBS)
176 TCLOPT= $(COMMON_TCL_OPTIONS)
181 ###########################################################
182 ############### Source and object modules
183 ###########################################################
185 # Note: Ordinary source files are not specified here at
186 # all, make finds them in suitable dirs. The object modules
187 # need to be specified, though
190 $(OBJDIR)\client.obj \
194 "$(OBJDIR)\eventl.obj" \
195 "$(OBJDIR)\requestq.obj" \
196 "$(OBJDIR)\service.obj" \
197 "$(OBJDIR)\seshigh.obj" \
198 "$(OBJDIR)\statserv.obj" \
199 "$(OBJDIR)\tcpdchk.obj"
202 "$(OBJDIR)\read-grs.obj" \
203 "$(OBJDIR)\ztest.obj"
206 $(OBJDIR)\cclerrms.obj \
207 $(OBJDIR)\cclfind.obj \
208 $(OBJDIR)\cclptree.obj \
209 $(OBJDIR)\cclqfile.obj \
210 $(OBJDIR)\cclqual.obj \
211 $(OBJDIR)\cclstr.obj \
212 $(OBJDIR)\ccltoken.obj
215 $(OBJDIR)\proto.obj \
216 $(OBJDIR)\prt-acc.obj \
217 $(OBJDIR)\prt-add.obj \
218 $(OBJDIR)\prt-arc.obj \
219 $(OBJDIR)\prt-dat.obj \
220 $(OBJDIR)\prt-dia.obj \
221 $(OBJDIR)\prt-esp.obj \
222 $(OBJDIR)\prt-exd.obj \
223 $(OBJDIR)\prt-exp.obj \
224 $(OBJDIR)\prt-grs.obj \
225 $(OBJDIR)\prt-rsc.obj \
226 $(OBJDIR)\prt-univ.obj
229 $(OBJDIR)\comstack.obj \
230 $(OBJDIR)\tcpip.obj \
231 $(OBJDIR)\waislen.obj
234 $(OBJDIR)\ber_any.obj \
235 $(OBJDIR)\ber_bit.obj \
236 $(OBJDIR)\ber_bool.obj \
237 $(OBJDIR)\ber_int.obj \
238 $(OBJDIR)\ber_len.obj \
239 $(OBJDIR)\ber_null.obj \
240 $(OBJDIR)\ber_oct.obj \
241 $(OBJDIR)\ber_oid.obj \
242 $(OBJDIR)\ber_tag.obj \
243 $(OBJDIR)\dumpber.obj \
245 $(OBJDIR)\odr_any.obj \
246 $(OBJDIR)\odr_bit.obj \
247 $(OBJDIR)\odr_bool.obj \
248 $(OBJDIR)\odr_choice.obj \
249 $(OBJDIR)\odr_cons.obj \
250 $(OBJDIR)\odr_enum.obj \
251 $(OBJDIR)\odr_int.obj \
252 $(OBJDIR)\odr_mem.obj \
253 $(OBJDIR)\odr_null.obj \
254 $(OBJDIR)\odr_oct.obj \
255 $(OBJDIR)\odr_oid.obj \
256 $(OBJDIR)\odr_seq.obj \
257 $(OBJDIR)\odr_tag.obj \
258 $(OBJDIR)\odr_use.obj \
259 $(OBJDIR)\odr_util.obj
262 $(OBJDIR)\atoin.obj \
264 $(OBJDIR)\marcdisp.obj \
266 $(OBJDIR)\nmemsdup.obj \
268 $(OBJDIR)\options.obj \
269 $(OBJDIR)\readconf.obj \
270 $(OBJDIR)\tpath.obj \
271 $(OBJDIR)\wrbuf.obj \
272 $(OBJDIR)\xmalloc.obj \
273 $(OBJDIR)\matchstr.obj
276 $(OBJDIR)\diagbib1.obj \
278 $(OBJDIR)\prt-ext.obj \
279 $(OBJDIR)\logrpn.obj \
280 $(OBJDIR)\pquery.obj \
281 $(OBJDIR)\yaz-ccl.obj \
282 $(OBJDIR)\otherinfo.obj \
283 $(OBJDIR)\sortspec.obj \
284 $(OBJDIR)\z3950oid.obj
288 $(OBJDIR)\d1_absyn.obj\
289 $(OBJDIR)\d1_attset.obj\
290 $(OBJDIR)\d1_doespec.obj\
291 $(OBJDIR)\d1_espec.obj\
292 $(OBJDIR)\d1_expout.obj\
293 $(OBJDIR)\d1_grs.obj\
294 $(OBJDIR)\d1_handle.obj\
295 $(OBJDIR)\d1_map.obj\
296 $(OBJDIR)\d1_marc.obj\
297 $(OBJDIR)\d1_prtree.obj\
298 $(OBJDIR)\d1_read.obj\
299 $(OBJDIR)\d1_soif.obj\
300 $(OBJDIR)\d1_sumout.obj\
301 $(OBJDIR)\d1_sutrs.obj\
302 $(OBJDIR)\d1_tagset.obj\
303 $(OBJDIR)\d1_varset.obj\
304 $(OBJDIR)\d1_write.obj\
308 $(OBJDIR)\z-date.obj\
309 $(OBJDIR)\z-univ.obj\
310 $(OBJDIR)\zes-update.obj\
311 $(OBJDIR)\zes-admin.obj \
312 $(OBJDIR)\z-accdes1.obj \
313 $(OBJDIR)\z-accform1.obj \
314 $(OBJDIR)\z-acckrb1.obj \
315 $(OBJDIR)\z-core.obj \
316 $(OBJDIR)\z-diag1.obj \
317 $(OBJDIR)\z-espec1.obj \
318 $(OBJDIR)\z-estask.obj \
319 $(OBJDIR)\z-exp.obj \
320 $(OBJDIR)\z-grs.obj \
321 $(OBJDIR)\z-opac.obj \
322 $(OBJDIR)\z-uifr1.obj \
323 $(OBJDIR)\z-rrf1.obj \
324 $(OBJDIR)\z-rrf2.obj \
325 $(OBJDIR)\z-sum.obj \
326 $(OBJDIR)\z-sutrs.obj \
327 $(OBJDIR)\zes-expi.obj \
328 $(OBJDIR)\zes-exps.obj \
329 $(OBJDIR)\zes-order.obj \
330 $(OBJDIR)\zes-pquery.obj \
331 $(OBJDIR)\zes-psched.obj \
332 $(OBJDIR)\zes-pset.obj \
333 $(OBJDIR)\zes-update0.obj
336 $(OBJDIR)\ill-get.obj\
337 $(OBJDIR)\ill-core.obj\
338 $(OBJDIR)\item-req.obj
343 $(YAZ_COMSTACK_OBJS) \
360 DLL_OBJS= $(YAZ_OBJS)
368 ##########################################################
369 ############## proto.h
370 ##########################################################
373 $(PROTOH): $(INCLDIR)\yaz\z-proto.h
374 type $(INCLDIR)\yaz\z-proto.h > $(PROTOH)
376 $(PROTOH): $(INCLDIR)\yaz\prt-proto.h
377 copy $(ASNDIR)\*.h $(INCLDIR)\yaz
378 type $(INCLDIR)\yaz\prt-proto.h > $(PROTOH)
382 ###########################################################
383 ############### Generated C and H files
385 ######################################################
388 Z3950_C_DIR=$(Z3950DIR)
390 #!!! Should be moved to OBJ, but that requires too much trickery
392 # Files generated from datetime.asn
393 DATETIME_H_FILES = $(INCLDIR)\yaz\z-date.h
394 DATETIME_C_FILES = $(Z3950_C_DIR)\z-date.c
396 # Files generated from univres.asn
397 UNIVRES_H_FILES = $(INCLDIR)\yaz\z-univ.h
398 UNIVRES_C_FILES = $(Z3950_C_DIR)\z-univ.c
400 # Files generated from esupdate.asn
401 ESUPDATE_H_FILES = $(INCLDIR)\yaz\zes-update.h
402 ESUPDATE_C_FILES = $(Z3950_C_DIR)\zes-update.c
404 # Files generated from esadmin.asn
405 ESADMIN_H_FILES = $(INCLDIR)\yaz\zes-admin.h
406 ESADMIN_C_FILES = $(Z3950_C_DIR)\zes-admin.c
408 # Files created from z3950v3.asn
410 $(INCLDIR)\yaz\z-accdes1.h \
411 $(INCLDIR)\yaz\z-core.h
414 $(Z3950_C_DIR)\z-accdes1.c \
415 $(Z3950_C_DIR)\z-accform1.c \
416 $(Z3950_C_DIR)\z-acckrb1.c \
417 $(Z3950_C_DIR)\z-core.c \
418 $(Z3950_C_DIR)\z-diag1.c \
419 $(Z3950_C_DIR)\z-espec1.c \
420 $(Z3950_C_DIR)\z-estask.c \
421 $(Z3950_C_DIR)\z-exp.c \
422 $(Z3950_C_DIR)\z-grs.c \
423 $(Z3950_C_DIR)\z-opac.c \
424 $(Z3950_C_DIR)\z-uifr1.c \
425 $(Z3950_C_DIR)\z-rrf1.c \
426 $(Z3950_C_DIR)\z-rrf2.c \
427 $(Z3950_C_DIR)\z-sum.c \
428 $(Z3950_C_DIR)\z-sutrs.c \
429 $(Z3950_C_DIR)\zes-expi.c \
430 $(Z3950_C_DIR)\zes-exps.c \
431 $(Z3950_C_DIR)\zes-order.c \
432 $(Z3950_C_DIR)\zes-pquery.c \
433 $(Z3950_C_DIR)\zes-psched.c \
434 $(Z3950_C_DIR)\zes-pset.c \
435 $(Z3950_C_DIR)\zes-update0.c
437 # Files generated from ill9702.asn
439 $(INCLDIR)\yaz\ill-core.h
442 $(ILL_C_DIR)\ill-core.c
444 # Files generated from itemreq.asn
446 $(INCLDIR)\yaz\item-req.h
449 $(ILL_C_DIR)\item-req.c
452 DATETIME_FILES = $(DATETIME_H_FILES) $(DATETIME_C_FILES)
453 UNIVRES_FILES = $(UNIVRES_H_FILES) $(UNIVRES_C_FILES)
454 ESUPDATE_FILES = $(ESUPDATE_H_FILES) $(ESUPDATE_C_FILES)
455 ESADMIN_FILES = $(ESADMIN_H_FILES) $(ESADMIN_C_FILES)
456 Z3950V3_FILES= $(Z3950V3_C_FILES) $(Z3950V3_H_FILES)
457 ILL_CORE_FILES= $(ILL_CORE_C_FILES) $(ILL_CORE_H_FILES)
458 ITEM_REQ_FILES= $(ITEM_REQ_C_FILES) $(ITEM_REQ_H_FILES)
462 $(ESUPDATE_C_FILES) \
464 $(DATETIME_C_FILES) \
469 $(ESUPDATE_H_FILES) \
471 $(DATETIME_H_FILES) \
475 $(GENERATED_H_FILES) \
476 $(GENERATED_C_FILES) \
480 ###########################################################
481 ############### Compiling
482 ###########################################################
484 # Note: This defines where to look for the necessary
485 # source files. Funny way of doing it, but it works.
488 {$(SRCDIR)}.cpp{$(OBJDIR)}.obj:
492 {$(CLIENTDIR)}.c{$(OBJDIR)}.obj:
493 @$(CPP) $(COPT) $< /D"_CONSOLE"
496 {$(ZTESTDIR)}.c{$(OBJDIR)}.obj:
497 @$(CPP) $(COPT) $< /D"_CONSOLE"
500 {$(SERVERDIR)}.c{$(OBJDIR)}.obj:
503 # Various YAZ source directories
504 {$(ASNDIR)}.c{$(OBJDIR)}.obj:
507 {$(COMSTACKDIR)}.c{$(OBJDIR)}.obj:
510 {$(ODRDIR)}.c{$(OBJDIR)}.obj:
513 {$(UTILDIR)}.c{$(OBJDIR)}.obj:
516 {$(ZUTILDIR)}.c{$(OBJDIR)}.obj:
519 {$(RETDIR)}.c{$(OBJDIR)}.obj:
522 {$(Z3950_C_DIR)}.c{$(OBJDIR)}.obj:
525 {$(ILL_C_DIR)}.c{$(OBJDIR)}.obj:
528 {$(CCLDIR)}.c{$(OBJDIR)}.obj:
531 ############### ASN-generated files
537 $(TCL) util\cvs-date.tcl include\yaz\yaz-date.h
540 $(Z3950V3_FILES): $(Z3950DIR)\z3950v3.asn
542 $(TCL) $(TCLOPT) -d z.tcl z3950v3.asn
545 $(DATETIME_FILES): $(Z3950DIR)\datetime.asn
547 $(TCL) $(TCLOPT) -d z.tcl datetime.asn
550 $(UNIVRES_FILES): $(Z3950DIR)\univres.asn
552 $(TCL) $(TCLOPT) -d z.tcl univres.asn
555 $(ESUPDATE_FILES): $(Z3950DIR)\esupdate.asn
557 $(TCL) $(TCLOPT) -d z.tcl esupdate.asn
560 $(ESADMIN_FILES): $(Z3950DIR)\esadmin.asn
562 $(TCL) $(TCLOPT) -d z.tcl esadmin.asn
565 $(ILL_CORE_FILES): $(ILLDIR)\ill9702.asn
567 $(TCL) $(TCLOPT) -d ill.tcl ill9702.asn
570 $(ITEM_REQ_FILES): $(ILLDIR)\item-req.asn
572 $(TCL) $(TCLOPT) -d ill.tcl item-req.asn
578 ###########################################################
579 ############### Resources
580 ###########################################################
582 ### The RC compiler (resource files)
584 COMMON_RC_OPTIONS= /l 0x406 /i"$(ROOTDIR)"
585 DEBUG_RC_OPTIONS=/d "_DEBUG"
586 RELEASE_RC_OPTIONS=/d "NDEBUG"
588 YAZ_RES=$(OBJDIR)\yaz.res
589 YAZ_RC=$(WINDIR)\yaz.rc
597 $(YAZ_RES): $(YAZ_RC)
598 $(RSC) $(RSOPT) /fo"$(YAZ_RES)" $(YAZ_RC)
600 ###########################################################
601 ############### Linking
602 ###########################################################
604 $(DLL) $(IMPLIB): "$(BINDIR)" $(DLL_OBJS) $(YAZ_RES)
605 @echo Linking the dll $(DLL)
613 /implib:"$(LIBDIR)\yaz.lib"
614 /pdb:"$(LIBDIR)\yaz.pdb"
615 /map:"$(LIBDIR)\yaz.map"
618 $(CLIENT) : "$(BINDIR)" $(YAZ_CLIENT_OBJS)
619 @echo Linking the client $(CLIENT)
622 $(CLIENT_LINK_OPTIONS)
626 /pdb:"$(LIBDIR)\yaz-client.pdb"
627 /map:"$(LIBDIR)\yaz-client.map"
631 $(ZTEST) : "$(BINDIR)" $(ZTEST_OBJS) $(DLL)
632 @echo Linking the ztest $(ZTEST)
635 $(ZTEST_LINK_OPTIONS)
640 /implib:"$(LIBDIR)\yaz-ztest.lib"
641 /pdb:"$(LIBDIR)\yaz-ztest.pdb"
642 /map:"$(LIBDIR)\yaz-ztest.map"
647 # note that this links a lib, so it uses completely different options.
649 ###########################################################
650 ############### Special operations
651 ###########################################################
669 del $(Z3950_C_DIR)\*.c
670 del $(Z3950_C_DIR)\*.h
671 del $(INCLDIR)\yaz\z-accdes1.h
672 del $(INCLDIR)\yaz\z-core.h
673 del $(DATETIME_H_FILES)
674 del $(UNIVRES_H_FILES)
675 del $(ESUPDATE_H_FILES)
677 # Because DOS del will only accept one file name to delete,
678 # the _H_ files work only on sets that have just one file.
679 # Z3950_H_FILES had to be spelled out. One more point for MS!
681 ########### check directories and create if needed
682 dirs: $(OBJDIR) $(WINDIR) $(LIBDIR) $(BINDIR) $(TMPDIR)
684 $(OBJDIR) $(WINDIR) $(LIBDIR) $(BINDIR) $(TMPDIR):
685 if not exist "$@/$(NUL)" mkdir "$@"
688 ###########################################################
689 ############### Explicit dependencies
690 ###########################################################
692 $(ALL_OBJS): $(PROTOH)
694 # force recompilation of everything, if makefile changed
696 $(Z3950_OBJS): $(GENERATED_C_FILES) $(GENERATED_H_FILES)
698 $(ILL_OBJS): $(ILL_CORE_FILES) $(ITEM_REQ_FILES)
701 $(PROTOH): $(GENERATED_C_FILES) $(GENERATED_H_FILES)
703 # makes sure we generate before compiling anything, as the
704 # new proto.h refers to the generated files, and is included
707 ###########################################################
709 ###########################################################
712 # Revision 1.26 2001-09-27 12:09:18 adam
713 # Function nmem_exit calls oid_exit (when reference is 0).
715 # Revision 1.25 2001/09/24 21:51:56 adam
716 # New Z39.50 OID utilities: yaz_oidval_to_z3950oid, yaz_str_to_z3950oid
717 # and yaz_z3950oid_to_str.
719 # Revision 1.24 2001/08/14 12:05:58 adam
722 # Revision 1.23 2001/05/18 11:42:03 adam
723 # YAZ Build date for WIN32.
725 # Revision 1.22 2001/03/09 14:58:20 adam
726 # Updated version resource.
728 # Revision 1.21 2001/02/28 16:56:33 adam
729 # Added version info for WIN32.
731 # Revision 1.20 2000/12/01 17:56:41 adam
732 # on WIN32 function statserv_closedown closes socket(s) to provoke close.
734 # Revision 1.19 2000/11/16 13:03:13 adam
735 # Function ccl_rpn_query sets attributeSet to Bib-1.
737 # Revision 1.18 2000/11/01 14:47:00 adam
738 # Added CCL support for WIN32.
740 # Revision 1.17 2000/10/06 12:01:12 adam
741 # Updates regarding ASN-code generation (mostly).
743 # Revision 1.16 2000/05/05 13:48:15 adam
746 # Revision 1.15 2000/04/17 14:21:38 adam
749 # Revision 1.14 2000/03/02 08:48:21 adam
750 # Renamed ASN.1 compiler to yaz-comp (used to be yc.tcl).
752 # Revision 1.13 2000/02/28 11:13:03 adam
753 # Removed odr_priv.obj.
755 # Revision 1.12 2000/01/06 11:27:16 adam
758 # Revision 1.11 1999/12/21 14:16:20 ian
759 # Changed retrieval module to allow data1 trees with no associated absyn.
760 # Also added a simple interface for extracting values from data1 trees using
761 # a string based tagpath.
763 # Revision 1.10 1999/12/08 13:10:48 adam
766 # Revision 1.9 1999/11/30 13:47:12 adam
767 # Improved installation. Moved header files to include/yaz.
769 # Revision 1.8 1999/07/21 08:48:02 adam
770 # Removed dmalloc.obj.
772 # Revision 1.7 1999/06/09 15:10:08 heikki
773 # Cleaning up. Seems to work all right
775 # Revision 1.6 1999/06/09 13:33:32 heikki
776 # Compiles and links both old and new type stuff all right
778 # Revision 1.5 1999/06/09 11:05:30 heikki
779 # At least it can compile
781 # Revision 1.4 1999/06/09 09:41:09 heikki
782 # More work on the ASN-generated files.
784 # Revision 1.3 1999/06/08 14:32:30 heikki
785 # Proto.h works all right, removed linker warnings from server.lib
787 # Revision 1.2 1999/06/08 14:07:24 heikki
788 # Renamed a pile of files
789 # Tmpdir (to get around Ms leaving temp files around, and crashing
790 # when too many with same number...)
792 # Revision 1.1 1999/06/08 12:15:41 heikki
793 # Renamed to makefile (.nothing) (from .mak)
794 # Working on the proto.h problems and alternative confiigurations
796 # Revision 1.5 1999/06/04 10:04:28 heikki
799 # Revision 1.4 1999/06/02 13:23:29 heikki
800 # Debug options for C compiler
802 # Revision 1.3 1999/05/19 08:26:22 heikki