summaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* doc-build: Remove doc-build infrastructurePhilip Withnall2014-09-231-1/+1
| | | | | | | | This pertained to the old GNOME documentation infrastructure, used before Mallard existed. This isn’t used by any modules we care about any more. Most modules which set USE_COMMON_DOC_BUILD do so erroneously. https://bugzilla.gnome.org/show_bug.cgi?id=729931
* build: Remove a non-existent file from EXTRA_DISTPhilip Withnall2014-08-261-1/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=735418
* Fix distcheckChristian Persch2011-04-031-2/+0
|
* Distcheck with --disable-silent-rules2.28.0gnome-2-28Christian Persch2009-09-061-0/+2
|
* Remove MAINTAINERS, and dist the DOAP fileChristian Persch2009-09-061-0/+1
|
* Use AM_SILENT_RULESChristian Persch2009-08-161-1/+1
|
* Autogenerate ChangeLogChristian Persch2009-05-111-1/+16
|
* === Release 2.24.0 ===GNOME_COMMON_2_24_0GNOME_2_24_BRANCHPOINTgnome-2-24Christian Persch2008-09-221-2/+0
| | | | | | | * Makefile.am: * configure.in: Version 2.24.0. svn path=/trunk/; revision=3914
* remove a few more unused files.James Henstridge2004-05-261-1/+1
| | | | svn path=/trunk/; revision=3445
* some small cleanups.James Henstridge2004-05-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2004-05-26 James Henstridge <james@daa.com.au> * macros2/gnome-compiler-warnings.m4: some small cleanups. * macros2/gnome-common.m4 (GNOME_COMMON_INIT): since caching is turned off in all recent Autoconfs, it doesn't make sense to use it. Change implementation to instead make sure ${ACLOCAL_FLAGS} gets passed to aclocal when called from the makefile. * macros2/Makefile.am: alter installation so that it puts the macros directly into $(datadir)/aclocal instead of $(datadir)/aclocal/gnome2-macros * autogen.sh (REQUIRED_AUTOMAKE_VERSION): use a modern version of automake. * macros2/gnome-compiler-flags.m4: move from compiler-flags.m4 to reduce chance of collisions. * macros2/gnome-autogen.sh: move from autogen.sh * Makefile.am (SUBDIRS): don't build bin/ and macros/ directories. * configure.in: don't create makefiles for bin/ and macros/ directories. Since we don't actually build the support/ directory (since 2001), remove the matching parts from the configure script. svn path=/trunk/; revision=3443
* Bump the version number to 2.3.0Malcolm Tredinnick2003-05-241-1/+1
| | | | | | | | | | | * configure.in: Bump the version number to 2.3.0 * configure.in, Makefile.am, macros2/autogen.sh, doc-build/*: Add in the infrastructure to allow user documentatin to be built from some common files. This will not affect existing packages. The changes required to use this are given in doc-build/README. svn path=/trunk/; revision=2905
* Removed.Martin Baulig2001-04-141-12/+2
| | | | | | | | | | | | | | | | | | | 2001-04-14 Martin Baulig <baulig@suse.de> * gnome-common.pc.in, gnome-common-2.0.pc.in: Removed. * configure.in: Set version number to 1.2.2. (--enable-platform-gnome-2): Removed this command line argument; this package is now the same for GNOME 1.x and GNOME 2.0. * acinclude.m4: Removed. * acconfig.h: Removed. * support/: We don't build this directory anymore; the GNOME 1.x version of it is in gnome-libs/support and the GNOME 2.0 one is in libgnomebase/libgnomesupport. svn path=/trunk/; revision=1660
* added gnome-common.spec.in to EXTRA_DISTS added gnome-common.spec.inRobin Slomkowski2001-03-261-1/+1
| | | | | | | | | | * Makefile.am: added gnome-common.spec.in to EXTRA_DISTS * configure.in: added gnome-common.spec.in * gnome-common.spec: removed from repository as it appeared generic * gnome-common.spec.in: new spec file using Martin's suggestions svn path=/trunk/; revision=1653
* Set version number to 1.2.1.Martin Baulig2000-11-211-7/+13
| | | | | | | | | | | | | | | | | | | | | 2000-11-21 Martin Baulig <martin@home-of-linux.org> * configure.in: Set version number to 1.2.1. * configure.in (--enable-platform-gnome-2): New configure command line argument to enable support for the GNOME 2.x platform. (PLATFORM_GNOME_2): New automake conditional. * Do the GNOME_SUPPORT_CHECKS here if we're on the GNOME 2.x platform. * Makefile.am (SUBDIRS): Conditionally add support for the GNOME 2.x platform. * acinclude.m4: New file. Put stuff from gnome-support.m4 and need-declaration.m4 here. svn path=/trunk/; revision=1466
* Moved macros/gnome-autogen.sh to bin/gnome-autogen.sh.Martin Baulig2000-05-291-1/+1
| | | | svn path=/trunk/; revision=1256
* *** empty log message ***Martin Baulig2000-05-291-1/+1
| | | | svn path=/trunk/; revision=1255
* To make this work both for GNOME Applications inside and outside theMartin Baulig1999-02-041-10/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GNOME CVS Tree I did the following: * There is an `INSIDE_GNOME_COMMON' automake conditional which is defined in two places: - macros/aclocal-includes.m4 defines this to always be false. - gnome-common/configure.in does not include anything from macros and defines this to be true. * We use this automake conditional in the macros/Makefile.am to install $(MACROS), autogen.sh, gnome-common.m4 and a newly created gnome-macros.dep in `$(datadir)/aclocal/gnome'. Since aclocal doesn't look in subdirectories we can safely install them there even when compiling from CVS. Also, there is no need to make any change to any existing application in the GNOME CVS Tree - really fine ... * When we're outside the GNOME CVS Tree we simply need to tell aclocal that it should also look in `$(datadir)/aclocal/gnome' and it will find all the macros. The is a `gnome-skel' module in CVS that can be used as a starting point when writing a new GNOME Application that should be used outside CVS. February 4, 1999, Martin Baulig <martin@home-of-linux.org> svn path=/trunk/; revision=609
* New sample file. Likewise. Likewise. Likewise.Raja R Harinath1998-02-191-0/+11
* autogen.sh: New sample file. * configure.in: Likewise. * Makefile.am: Likewise. * README: Likewise. svn path=/trunk/; revision=91