From 59d9f1d6983fc9b606a1f9214fb817efe3d6cff8 Mon Sep 17 00:00:00 2001 From: Daniel Jacobowitz Date: Thu, 8 Apr 2010 16:48:17 -0700 Subject: Shorten build commands This patch scratches an itch. Each individual gcc command in the glibc build is over 1K, which means it takes up a good chunk of my terminal. Most of that is include paths. Any version of GCC new enough to build glibc supports response files, which were added in 2005. So use a response file for the static list of include paths. Now the build commands are a lot shorter, and easier to use when developing glibc. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 61cfa436c4..d2327b3cd9 100644 --- a/Makefile +++ b/Makefile @@ -227,7 +227,7 @@ parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules. parent-clean: parent-mostlyclean common-clean postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \ - $(addprefix $(objpfx),sysd-dirs sysd-rules) \ + $(addprefix $(objpfx),sysd-dirs sysd-rules includes includes.mk) \ $(addprefix $(objpfx),sysd-sorted soversions.mk soversions.i) clean: parent-clean -- cgit 1.4.1