mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-14 11:38:05 +02:00
2007-03-15 Marco Barisione <marco@barisione.org> Add GRegex for regular expression matching. (#50075) * configure.in: Handle GRegex compilation. * glib/gregex.c: * glib/gregex.h: Code for GRegex. * glib/Makefile.am: * glib/makefile.msc.in: Updated makefiles. * glib/pcre/*: Internal copy of PCRE. * glib/update-pcre/*: Stuff to automatically update the internal PCRE to a newer version. * tests/regex-test.c: * tests/Makefile.am: * tests/makefile.msc.in: Add tests for GRegex. svn path=/trunk/; revision=5408
98 lines
2.1 KiB
Makefile
98 lines
2.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
AUTOMAKE_OPTIONS = 1.6
|
|
|
|
# The name of the module.
|
|
DOC_MODULE=glib
|
|
|
|
# The top-level SGML file.
|
|
DOC_MAIN_SGML_FILE=glib-docs.sgml
|
|
|
|
# Extra options to supply to gtkdoc-scan
|
|
SCAN_OPTIONS=--deprecated-guards="G_DISABLE_DEPRECATED"
|
|
|
|
# The directory containing the source code. Relative to $(srcdir)
|
|
DOC_SOURCE_DIR=../../..
|
|
|
|
# Used for dependencies
|
|
HFILE_GLOB=$(top_srcdir)/glib/*.h $(top_srcdir)/gmodule/*.h
|
|
CFILE_GLOB=$(top_srcdir)/glib/*.c $(top_srcdir)/gmodule/*.c
|
|
|
|
# Headers to ignore
|
|
IGNORE_HFILES= \
|
|
build \
|
|
gobject \
|
|
config.h \
|
|
gdatasetprivate.h \
|
|
glibintl.h \
|
|
gbsearcharray.h \
|
|
gmoduleconf.h \
|
|
gunibreak.h \
|
|
gunicomp.h \
|
|
gunidecomp.h \
|
|
gunichartables.h \
|
|
glibconfig-sysdefs.h \
|
|
gdebug.h \
|
|
gprintfint.h \
|
|
galias.h \
|
|
gmirroringtable.h \
|
|
gscripttable.h \
|
|
glib-mirroring-tab \
|
|
gnulib \
|
|
pcre \
|
|
update-pcre
|
|
|
|
# Extra options to supply to gtkdoc-mkdb
|
|
MKDB_OPTIONS=--sgml-mode --output-format=xml --ignore-files=trio
|
|
|
|
# Images to copy into HTML directory
|
|
HTML_IMAGES = \
|
|
file-name-encodings.png \
|
|
mainloop-states.gif
|
|
|
|
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
|
|
content_files = \
|
|
cross.sgml \
|
|
running.sgml \
|
|
building.sgml \
|
|
changes.sgml \
|
|
compiling.sgml \
|
|
resources.sgml \
|
|
regex-syntax.sgml \
|
|
version.xml \
|
|
glib-gettextize.xml
|
|
|
|
# Extra options to supply to gtkdoc-fixref
|
|
FIXXREF_OPTIONS=
|
|
|
|
# include common portion ...
|
|
include $(top_srcdir)/gtk-doc.make
|
|
|
|
# Other files to distribute
|
|
EXTRA_DIST += \
|
|
file-name-encodings.png \
|
|
file-name-encodings.sxd \
|
|
mainloop-states.fig \
|
|
mainloop-states.png \
|
|
mainloop-states.eps \
|
|
version.xml.in
|
|
|
|
########################################################################
|
|
|
|
man_MANS = glib-gettextize.1
|
|
|
|
if ENABLE_MAN
|
|
|
|
%.1 : %.xml
|
|
@XSLTPROC@ -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
|
|
|
endif
|
|
|
|
BUILT_EXTRA_DIST = $(man_MANS)
|
|
|
|
dist-hook-local: $(BUILT_EXTRA_DIST)
|
|
files='$(BUILT_EXTRA_DIST)'; \
|
|
for f in $$files; do \
|
|
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
|
cp $$d/$$f $(distdir) || exit 1; done
|
|
|