From 754f8def0dfeeb43afa5a96ad1971fd0ef02c419 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 23 Jan 2022 01:10:33 -0500 Subject: libgloss: merge stub arch configure scripts up a level For about half the ports, we don't need a subdir configure script. They're using the config/default.m[ht] rules, and they aren't doing any unique configure tests, so they exist just to pass top-level settings down to create the arch Makefile. We can just as easily do that from the top-level Mkaefile directly and skip configure. Most of the remaining configure scripts could be migrated up to the top-level too, but that would require care in each subdir. So let's be lazy and put that off to another day. --- libgloss/ft32/Makefile.in | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'libgloss/ft32/Makefile.in') diff --git a/libgloss/ft32/Makefile.in b/libgloss/ft32/Makefile.in index 21f9e82..1516155 100644 --- a/libgloss/ft32/Makefile.in +++ b/libgloss/ft32/Makefile.in @@ -115,15 +115,12 @@ clean mostlyclean: rm -f *.o *.a distclean maintainer-clean realclean: clean - rm -f Makefile config.cache config.log config.status + rm -f Makefile .PHONY: info dvi doc install-info clean-info info doc dvi: install-info: clean-info: -Makefile: Makefile.in config.status @host_makefile_frag_path@ - $(SHELL) config.status - -config.status: configure - $(SHELL) config.status --recheck +Makefile: Makefile.in ../config.status + cd .. && $(SHELL) config.status -- cgit v1.1