1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
# Copyright (C) 2001-2023 Artifex Software, Inc.
# All Rights Reserved.
#
# This software is provided AS-IS with no warranty, either express or
# implied.
#
# This software is distributed under license and may not be copied,
# modified or distributed except as expressly authorized under the terms
# of the license contained in the file LICENSE in this distribution.
#
# Refer to licensing information at http://www.artifex.com or contact
# Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
# CA 94129, USA, for further information.
#
# makefile for expat, the XML stream parsig library
#
# Users of this makefile must define the following:
# SHARE_EXPAT - 1 to link a system (shared) library
# 0 to compile in the referenced source,
# EXPAT_CFLAGS - Compiler flags for building the source,
# EXPATSRCDIR - the expat source top-level directory,
# EXPATGENDIR - directory for intermediate generated files,
# EXPATOBJDIR - directory for object files.
# Define the name of this makefile
EXPAT_MAK=$(GLSRC)expat.mak $(TOP_MAKEFILES)
# local aliases
EXPATSRC=$(EXPATSRCDIR)$(D)lib$(D)
EXPATGEN=$(EXPATGENDIR)$(D)
EXPATOBJ=$(EXPATOBJDIR)$(D)
EXPATO_=$(O_)$(EXPATOBJ)
EXPATCC=$(CC) $(I_)$(EXPATSRCDIR)$(_I) $(I_)$(EXPATSRCDIR)$(D)lib$(_I) \
$(D_)XML_POOR_ENTROPY$(_D) $(EXPAT_CFLAGS) $(CCFLAGS)
expat.clean : expat.config-clean expat.clean-not-config-clean
# would be nice if we used an explicit object list here
expat.clean-not-config-clean :
$(RM_) $(EXPATOBJ)*.$(OBJ)
expat.config-clean :
$(RM_) $(EXPATGEN)expat.dev
$(RM_) $(EXPATGEN)expat_0.dev
$(RM_) $(EXPATGEN)expat_1.dev
expat_=$(EXPATOBJ)xmlparse.$(OBJ) \
$(EXPATOBJ)xmltok.$(OBJ) \
$(EXPATOBJ)xmlrole.$(OBJ)
expat_xmlparse_hdrs=$(EXPATSRC)expat.h \
$(EXPATSRC)xmlrole.h \
$(EXPATSRC)xmltok.h
expat_xmlrole_hdrs=$(EXPATSRC)ascii.h \
$(EXPATSRC)xmlrole.h \
$(EXPATSRC)expat_external.h \
$(EXPATSRC)internal.h
expat_xmltok_hdrs=$(EXPATSRC)xmltok_impl.c \
$(EXPATSRC)xmltok_ns.c \
$(EXPATSRC)ascii.h \
$(EXPATSRC)asciitab.h \
$(EXPATSRC)iasciitab.h \
$(EXPATSRC)latin1tab.h \
$(EXPATSRC)nametab.h \
$(EXPATSRC)utf8tab.h \
$(EXPATSRC)xmltok.h \
$(EXPATSRC)xmltok_impl.h \
$(EXPATSRC)expat_external.h \
$(EXPATSRC)internal.h
$(EXPATOBJ)xmlparse.$(OBJ) : $(EXPATSRC)xmlparse.c $(expat_xmlparse_hdrs) $(EXPAT_MAK) $(MAKEDIRS)
$(EXPATCC) $(EXPATO_)xmlparse.$(OBJ) $(C_) $(EXPATSRC)xmlparse.c
$(EXPATOBJ)xmlrole.$(OBJ) : $(EXPATSRC)xmlrole.c $(expat_xmlrole_hdrs) $(EXPAT_MAK) $(MAKEDIRS)
$(EXPATCC) $(EXPATO_)xmlrole.$(OBJ) $(C_) $(EXPATSRC)xmlrole.c
$(EXPATOBJ)xmltok.$(OBJ) : $(EXPATSRC)xmltok.c $(expat_xmltok_hdrs) $(EXPAT_MAK) $(MAKEDIRS)
$(EXPATCC) $(EXPATO_)xmltok.$(OBJ) $(C_) $(EXPATSRC)xmltok.c
# Copy the target definition we want
$(EXPATGEN)expat.dev : $(EXPAT_MAK) \
$(EXPATGEN)expat_$(SHARE_EXPAT).dev $(MAKEDIRS)
$(CP_) $(EXPATGEN)expat_$(SHARE_EXPAT).dev $(EXPATGEN)expat.dev
# Define the compiled in target
$(EXPATGEN)expat_0.dev : $(EXPAT_MAK) $(ECHOGS_XE) $(expat_) $(MAKEDIRS)
$(SETMOD) $(EXPATGEN)expat_0 $(expat_)
# Define the external link target
$(EXPATGEN)expat_1.dev : $(EXPAT_MAK) $(ECHOGS_XE) $(MAKEDIRS)
$(SETMOD) $(EXPATGEN)expat_1 -lib expat
|