From b2617354f437ac905057f521b47b8be6c3addcd1 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 7 Nov 2008 13:42:31 +0100 Subject: Makefile.am: added custom rule with -fwhole-program To make the ncmpc binary even smaller, you can compile all sources at once with "--combine -fwhole-program". Unfortunately, automake does not support this mode. For further experiments, this patch adds a custom rule which creates the binary named "ncmpc-tiny" this way. --- Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 5b8469f3b..b0b2f4fc0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,6 +16,10 @@ doc_DATA = \ EXTRA_DIST = \ $(doc_DATA) +# build the smalles possible ncmpc binary +ncmpc-tiny: + $(MAKE) -C src $@ + sparse-check: $(MAKE) -C src $@ -- cgit v1.2.3