From 2555cc3a704fcf5eeccb0066c5f2438cd16c2170 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 14 Aug 2016 22:05:03 +0100 Subject: [PATCH] build-sys; do not use subdirectory object None-recursive builds are quicker, and less problematic from make(1) object tracking point of view. See reference for full explanation. References: http://miller.emu.id.au/pmiller/books/rmch/ --- Makefile.am | 2 +- configure.ac | 2 +- img/Makefile.am | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 img/Makefile.am diff --git a/Makefile.am b/Makefile.am index fa9a2dd..03b49a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = img +EXTRA_DIST = img/mtr_icon.xpm sbin_PROGRAMS = mtr man_MANS = mtr.8 diff --git a/configure.ac b/configure.ac index 95b84e2..1679902 100644 --- a/configure.ac +++ b/configure.ac @@ -199,6 +199,6 @@ fi AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([Makefile img/Makefile]) +AC_CONFIG_FILES([Makefile]) AC_OUTPUT diff --git a/img/Makefile.am b/img/Makefile.am deleted file mode 100644 index b8679df..0000000 --- a/img/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -EXTRA_DIST = mtr_icon.xpm -- 2.47.2