summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gmail.com>2011-05-14 03:14:56 +0200
committerChristoph Brill <egore911@egore911.de>2011-05-15 21:46:06 +0200
commit39afe69ad7d2258d4043044d1283bd6e311e48da (patch)
tree0ebd3e7a95dbbc86ac8bbddd070d46759f230d2d
parent4005df66072ceac175ea71427deb16176262f197 (diff)
build: collapse all Makefile.am files into a single non-recursive one.
With this change, the whole of the build is done non-recursively in the top-level Makefile.am. This reduces the amount of overhead due to recursing into directories only to build one file. Signed-off-by: Diego Elio Pettenò <flameeyes@gmail.com> Signed-off-by: Christoph Brill <egore911@egore911.de>
-rw-r--r--.gitignore3
-rw-r--r--Makefile.am95
-rw-r--r--conf/Makefile.am27
-rw-r--r--configure.ac6
-rw-r--r--include/Makefile.am22
-rw-r--r--man/Makefile.am48
-rw-r--r--src/Makefile.am53
-rw-r--r--test/.gitignore6
-rw-r--r--test/Makefile.am15
-rw-r--r--tools/.gitignore3
-rw-r--r--tools/Makefile.am32
11 files changed, 96 insertions, 214 deletions
diff --git a/.gitignore b/.gitignore
index c496323..2f191c3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -76,3 +76,6 @@ core
# Edit the following section as needed
# For example, !report.pc overrides *.pc. See 'man gitignore'
#
+eventcomm-test
+synclient
+syndaemon
diff --git a/Makefile.am b/Makefile.am
index edd28a6..7cedc61 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -18,13 +18,104 @@
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-SUBDIRS = include src man tools conf test
MAINTAINERCLEANFILES = ChangeLog INSTALL
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = xorg-synaptics.pc
-.PHONY: ChangeLog INSTALL
+sdk_HEADERS = include/synaptics.h include/synaptics-properties.h
+
+input_LTLIBRARIES = @DRIVER_NAME@_drv.la
+
+# -module lets us name the module exactly how we want
+# -avoid-version prevents gratuitous .0.0.0 version numbers on the end
+# -shared avoid building the static archive
+@DRIVER_NAME@_drv_la_LDFLAGS = -module -avoid-version -shared
+@DRIVER_NAME@_drv_la_CPPFLAGS = -I$(top_srcdir)/include
+@DRIVER_NAME@_drv_la_CFLAGS = $(XORG_CFLAGS)
+
+@DRIVER_NAME@_drv_la_SOURCES = src/@DRIVER_NAME@.c src/synapticsstr.h \
+ src/synproto.h \
+ src/properties.c
+
+if BUILD_PS2COMM
+@DRIVER_NAME@_drv_la_SOURCES += \
+ src/alpscomm.c \
+ src/ps2comm.c src/ps2comm.h
+endif
+
+if BUILD_EVENTCOMM
+@DRIVER_NAME@_drv_la_SOURCES += \
+ src/eventcomm.c src/eventcomm.h
+endif
+
+if BUILD_PSMCOMM
+@DRIVER_NAME@_drv_la_SOURCES += \
+ src/psmcomm.c
+endif
+
+bin_PROGRAMS = synclient syndaemon
+
+synclient_SOURCES = tools/synclient.c
+synclient_CFLAGS = -I$(top_srcdir)/include $(XORG_CFLAGS) $(XI_CFLAGS)
+synclient_LDADD = $(XI_LIBS)
+
+syndaemon_SOURCES = tools/syndaemon.c
+syndaemon_CFLAGS = -I$(top_srcdir)/include $(XORG_CFLAGS) $(XI_CFLAGS) $(XTST_CFLAGS)
+syndaemon_LDADD = $(XI_LIBS) $(XTST_LIBS)
+
+if HAS_XORG_CONF_DIR
+dist_config_DATA = conf/50-synaptics.conf
+else
+fdidir = $(datadir)/hal/fdi/policy/20thirdparty
+dist_fdi_DATA = conf/11-x11-synaptics.fdi
+endif
+
+if ENABLE_UNIT_TESTS
+if BUILD_EVENTCOMM
+check_PROGRAMS = eventcomm-test
+
+eventcomm_test_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include
+eventcomm_test_CFLAGS = $(XORG_CFLAGS) $(CWARNFLAGS)
+eventcomm_test_SOURCES = test/eventcomm-test.c\
+ src/eventcomm.c \
+ test/fake-symbols.c test/fake-symbols.h
+
+TESTS = $(check_PROGRAMS)
+endif
+endif
+
+synclientmandir = $(APP_MAN_DIR)
+synclientman_PRE = man/synclient.man
+synclientman_DATA = $(synclientman_PRE:man=@APP_MAN_SUFFIX@)
+
+syndaemonmandir = $(APP_MAN_DIR)
+syndaemonman_PRE = man/syndaemon.man
+syndaemonman_DATA = $(syndaemonman_PRE:man=@APP_MAN_SUFFIX@)
+
+drivermandir = $(DRIVER_MAN_DIR)
+driverman_PRE = man/@DRIVER_NAME@.man
+driverman_DATA = $(driverman_PRE:man=@DRIVER_MAN_SUFFIX@)
+
+EXTRA_DIST = man/@DRIVER_NAME@.man man/synclient.man man/syndaemon.man
+
+CLEANFILES = $(driverman_DATA) $(synclientman_DATA) $(syndaemonman_DATA)
+
+SUFFIXES = .$(DRIVER_MAN_SUFFIX) .man
+
+.PHONY: ChangeLog INSTALL mandir
+
+mandir:
+ $(MKDIR_P) man
+
+# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
+.man.$(DRIVER_MAN_SUFFIX):
+ @$(MKDIR_P) man
+ $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
+
+.man.$(APP_MAN_SUFFIX):
+ @$(MKDIR_P) man
+ $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
INSTALL:
$(INSTALL_CMD)
diff --git a/conf/Makefile.am b/conf/Makefile.am
deleted file mode 100644
index 38d2a01..0000000
--- a/conf/Makefile.am
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2005 Adam Jackson.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# on the rights to use, copy, modify, merge, publish, distribute, sub
-# license, and/or sell copies of the Software, and to permit persons to whom
-# the Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice (including the next
-# paragraph) shall be included in all copies or substantial portions of the
-# Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
-# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-if HAS_XORG_CONF_DIR
-dist_config_DATA = 50-synaptics.conf
-else
-fdidir = $(datadir)/hal/fdi/policy/20thirdparty
-dist_fdi_DATA = 11-x11-synaptics.fdi
-endif
diff --git a/configure.ac b/configure.ac
index 2fe5289..e5427cd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -147,12 +147,6 @@ fi
# -----------------------------------------------------------------------------
AC_CONFIG_FILES([Makefile
- src/Makefile
- man/Makefile
- tools/Makefile
- conf/Makefile
- include/Makefile
- test/Makefile
xorg-synaptics.pc])
AC_OUTPUT
diff --git a/include/Makefile.am b/include/Makefile.am
deleted file mode 100644
index a7f921b..0000000
--- a/include/Makefile.am
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 2005 Adam Jackson.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# on the rights to use, copy, modify, merge, publish, distribute, sub
-# license, and/or sell copies of the Software, and to permit persons to whom
-# the Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice (including the next
-# paragraph) shall be included in all copies or substantial portions of the
-# Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
-# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-sdk_HEADERS = synaptics.h synaptics-properties.h
-
diff --git a/man/Makefile.am b/man/Makefile.am
deleted file mode 100644
index 79dba76..0000000
--- a/man/Makefile.am
+++ /dev/null
@@ -1,48 +0,0 @@
-# $Id$
-#
-# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice (including the next
-# paragraph) shall be included in all copies or substantial portions of the
-# Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-# DEALINGS IN THE SOFTWARE.
-#
-
-synclientmandir = $(APP_MAN_DIR)
-synclientman_PRE = synclient.man
-synclientman_DATA = $(synclientman_PRE:man=@APP_MAN_SUFFIX@)
-
-syndaemonmandir = $(APP_MAN_DIR)
-syndaemonman_PRE = syndaemon.man
-syndaemonman_DATA =$(syndaemonman_PRE:man=@APP_MAN_SUFFIX@)
-
-drivermandir = $(DRIVER_MAN_DIR)
-driverman_PRE = @DRIVER_NAME@.man
-driverman_DATA = $(driverman_PRE:man=@DRIVER_MAN_SUFFIX@)
-
-EXTRA_DIST = @DRIVER_NAME@.man synclient.man syndaemon.man
-
-CLEANFILES = $(driverman_DATA) $(synclientman_DATA) $(syndaemonman_DATA)
-
-SUFFIXES = .$(DRIVER_MAN_SUFFIX) .man
-
-# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
-.man.$(DRIVER_MAN_SUFFIX):
- $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
-.man.$(APP_MAN_SUFFIX):
- $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
-
diff --git a/src/Makefile.am b/src/Makefile.am
deleted file mode 100644
index ff513f1..0000000
--- a/src/Makefile.am
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2005 Adam Jackson.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# on the rights to use, copy, modify, merge, publish, distribute, sub
-# license, and/or sell copies of the Software, and to permit persons to whom
-# the Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice (including the next
-# paragraph) shall be included in all copies or substantial portions of the
-# Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
-# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-# this is obnoxious:
-# -module lets us name the module exactly how we want
-# -avoid-version prevents gratuitous .0.0.0 version numbers on the end
-# _ladir passes a dummy rpath to libtool so the thing will actually link
-# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
-@DRIVER_NAME@_drv_la_LTLIBRARIES = @DRIVER_NAME@_drv.la
-@DRIVER_NAME@_drv_la_LDFLAGS = -module -avoid-version
-@DRIVER_NAME@_drv_ladir = @inputdir@
-
-AM_CPPFLAGS = -I$(top_srcdir)/include
-AM_CFLAGS = $(XORG_CFLAGS)
-
-@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c synapticsstr.h \
- synproto.h \
- properties.c
-
-if BUILD_PS2COMM
-@DRIVER_NAME@_drv_la_SOURCES += \
- alpscomm.c \
- ps2comm.c ps2comm.h
-endif
-
-if BUILD_EVENTCOMM
-@DRIVER_NAME@_drv_la_SOURCES += \
- eventcomm.c eventcomm.h
-endif
-
-if BUILD_PSMCOMM
-@DRIVER_NAME@_drv_la_SOURCES += \
- psmcomm.c
-endif
-
diff --git a/test/.gitignore b/test/.gitignore
deleted file mode 100644
index d81fece..0000000
--- a/test/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-# Add & Override patterns for xf86-input-synaptics
-#
-# Edit the following section as needed
-# For example, !report.pc overrides *.pc. See 'man gitignore'
-
-eventcomm-test
diff --git a/test/Makefile.am b/test/Makefile.am
deleted file mode 100644
index 5dd8cdb..0000000
--- a/test/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-if ENABLE_UNIT_TESTS
-AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include
-AM_CFLAGS = $(XORG_CFLAGS) $(CWARNFLAGS)
-fake_syms = fake-symbols.c fake-symbols.h
-
-if BUILD_EVENTCOMM
-noinst_PROGRAMS = eventcomm-test
-
-eventcomm_test_SOURCES = eventcomm-test.c\
- $(top_srcdir)/src/eventcomm.c \
- $(fake_syms)
-endif
-
-TESTS = $(noinst_PROGRAMS)
-endif
diff --git a/tools/.gitignore b/tools/.gitignore
deleted file mode 100644
index f3b80fc..0000000
--- a/tools/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-# Add & Override for this directory and it's subdirectories
-synclient
-syndaemon
diff --git a/tools/Makefile.am b/tools/Makefile.am
deleted file mode 100644
index 389ceb7..0000000
--- a/tools/Makefile.am
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2008 Red Hat, Inc.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# on the rights to use, copy, modify, merge, publish, distribute, sub
-# license, and/or sell copies of the Software, and to permit persons to whom
-# the Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice (including the next
-# paragraph) shall be included in all copies or substantial portions of the
-# Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
-# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-bin_PROGRAMS = synclient syndaemon
-
-AM_CPPFLAGS = -I$(top_srcdir)/include $(XORG_CFLAGS)
-
-synclient_SOURCES = synclient.c
-synclient_CFLAGS = $(XI_CFLAGS)
-synclient_LDADD = $(XI_LIBS)
-
-syndaemon_SOURCES = syndaemon.c
-syndaemon_CFLAGS = $(XI_CFLAGS) $(XTST_CFLAGS)
-syndaemon_LDADD = $(XI_LIBS) $(XTST_LIBS)
-