diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-01-24 21:00:02 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-01-24 21:00:02 +0000 |
commit | 5d1316e5fc220213cfce1d06513855c9854cb643 (patch) | |
tree | 49bed976854b1a2a1db3070ac916dbe649c80f28 /ACEXML/common/Makefile | |
parent | f909ea671a7999cb7ac237bc47a4372b5697b579 (diff) | |
download | ATCD-5d1316e5fc220213cfce1d06513855c9854cb643.tar.gz |
ChangeLogTag:Thu Jan 24 14:53:38 2002 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'ACEXML/common/Makefile')
-rw-r--r-- | ACEXML/common/Makefile | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/ACEXML/common/Makefile b/ACEXML/common/Makefile new file mode 100644 index 00000000000..72cc7f153f7 --- /dev/null +++ b/ACEXML/common/Makefile @@ -0,0 +1,54 @@ +#---------------------------------------------------------------------------- +# $Id$ +# +# Makefile for the server-side ACE network services +#---------------------------------------------------------------------------- + +LIB = libACEXML.a +SHLIB = libACEXML.$(SOEXT) + +FILES = Attributes_Def_Builder \ + AttributesImpl \ + CharStream \ + DefaultHandler \ + DTD_Manager \ + Element_Def_Builder \ + Env \ + Exception \ + FileCharStream \ + InputSource \ + LocatorImpl \ + NamespaceSupport \ + SAXExceptions \ + Transcode \ + Validator \ + XMLFilterImpl + +DEFS = $(addsuffix .h,$(FILES)) +LSRC = $(addsuffix .cpp,$(FILES)) + +LIBS += $(ACELIB) +CCFLAGS += -I .. + +BUILD = $(VLIB) $(VSHLIB) + +#---------------------------------------------------------------------------- +# Include macros and targets +#---------------------------------------------------------------------------- + +include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU +include $(ACE_ROOT)/include/makeinclude/macros.GNU +include $(ACE_ROOT)/include/makeinclude/rules.common.GNU +include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU +include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU +include $(ACE_ROOT)/include/makeinclude/rules.local.GNU + +#---------------------------------------------------------------------------- +# Local targets +#---------------------------------------------------------------------------- + +#---------------------------------------------------------------------------- +# Dependencies +#---------------------------------------------------------------------------- +# DO NOT DELETE THIS LINE -- g++dep uses it. +# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |