From 1e4272b436ad1de4c473318399ac5185c92dfc55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 31 Jan 2020 16:31:48 +0000 Subject: Remove autotools build Remove dist check on the CI, since it doesn't really add anything in the Meson case (tarball is based on files checked into git and srcdir != builddir). --- docs/Makefile.am | 4 -- docs/reference/Makefile.am | 2 - docs/reference/libnice/Makefile.am | 117 ------------------------------------- 3 files changed, 123 deletions(-) delete mode 100644 docs/Makefile.am delete mode 100644 docs/reference/Makefile.am delete mode 100644 docs/reference/libnice/Makefile.am (limited to 'docs') diff --git a/docs/Makefile.am b/docs/Makefile.am deleted file mode 100644 index fcd5f1b..0000000 --- a/docs/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ - -SUBDIRS = reference - -EXTRA_DIST = design.txt diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am deleted file mode 100644 index ff46f5e..0000000 --- a/docs/reference/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ - -SUBDIRS = libnice diff --git a/docs/reference/libnice/Makefile.am b/docs/reference/libnice/Makefile.am deleted file mode 100644 index f6c2d52..0000000 --- a/docs/reference/libnice/Makefile.am +++ /dev/null @@ -1,117 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# We require automake 1.6 at least. -AUTOMAKE_OPTIONS = 1.6 - -# The name of the module, e.g. 'glib'. -DOC_MODULE=libnice - -# The top-level SGML file. You can change this if you want to. -DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml - -# The directory containing the source code. Relative to $(srcdir). -# gtk-doc will search all .c & .h files beneath here for inline comments -# documenting the functions and macros. -# e.g. DOC_SOURCE_DIR=../../../gtk -DOC_SOURCE_DIR=$(top_srcdir)/agent $(top_srcdir)/stun - -# Extra options to pass to gtkdoc-scangobj. Not normally needed. -SCANGOBJ_OPTIONS= - -# Extra options to supply to gtkdoc-scan. -# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" -SCAN_OPTIONS=--rebuild-types - -# Extra options to supply to gtkdoc-mkdb. -# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml -MKDB_OPTIONS=--xml-mode --output-format=xml --name-space=Nice - -# Extra options to supply to gtkdoc-mktmpl -# e.g. MKTMPL_OPTIONS=--only-section-tmpl -MKTMPL_OPTIONS= - -# Extra options to supply to gtkdoc-fixref. Not normally needed. -# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html -FIXXREF_OPTIONS= - -# Used for dependencies. The docs will be rebuilt if any of these change. -# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h -# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c -HFILE_GLOB=$(top_srcdir)/agent/agent.h $(top_srcdir)/agent/address.h \ - $(top_srcdir)/agent/debug.h $(top_srcdir)/agent/candidate.h \ - $(top_srcdir)/agent/interfaces.h \ - $(top_srcdir)/agent/pseudotcp.h \ - $(top_srcdir)/stun/stunagent.h \ - $(top_srcdir)/stun/stunmessage.h \ - $(top_srcdir)/stun/debug.h \ - $(top_srcdir)/stun/usages/bind.h \ - $(top_srcdir)/stun/usages/ice.h \ - $(top_srcdir)/stun/usages/timer.h \ - $(top_srcdir)/stun/usages/turn.h - -CFILE_GLOB=$(top_srcdir)/agent/agent.c \ - $(top_srcdir)/agent/pseudotcp.c - -# Header files to ignore when scanning. -# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h -IGNORE_HFILES= conncheck.h discovery.h stream.h component.h agent-priv.h \ - iostream.h inputstream.h outputstream.h \ - gstnice.h gstnicesrc.h gstnicesink.h \ - md5.h sha1.h stunhmac.h utils.h rand.h stun5389.h stuncrc32.h \ - stund.h agent-signals-marshal.h win32_common.h - -# Images to copy into HTML directory. -# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png -HTML_IMAGES = states.png - -# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). -# e.g. content_files=running.sgml building.sgml changes-2.0.sgml -content_files= - -# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded -# These files must be listed here *and* in content_files -# e.g. expand_content_files=running.sgml -expand_content_files= - -# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library. -# Only needed if you are using gtkdoc-scangobj to dynamically query widget -# signals and properties. -# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) -# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) -AM_CFLAGS = $(LIBNICE_CFLAGS) \ - $(GLIB_CFLAGS) \ - -I $(top_srcdir) \ - -I $(top_srcdir)/random \ - -I $(top_srcdir)/socket \ - -I $(top_srcdir)/stun - -GTKDOC_LIBS= $(top_builddir)/agent/libagent.la $(GLIB_LIBS) $(top_builddir)/stun/libstun.la \ - $(GUPNP_LIBS) - - -# This includes the standard gtk-doc make rules, copied by gtkdocize. -include $(top_srcdir)/gtk-doc.make - -# Other files to distribute -# e.g. EXTRA_DIST += version.xml.in -EXTRA_DIST += states.gv - -EXTRA_DIST += meson.build - -# Files not to distribute -# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types -# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt -#DISTCLEANFILES += - -# If we ever need to regenerate this diagram. -# Since it’s not expected to change much, let’s not depend on GraphViz to -# build the docs. -states.png: states.gv - dot -Tpng -Gsize=9.6,2.9\! -Gdpi=200 $^ > $@ - -if ENABLE_GTK_DOC -TESTS_ENVIRONMENT = \ - DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \ - SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir) -TESTS = $(GTKDOC_CHECK) -endif -- cgit v1.2.1