From dccecf683dcd7749661aaa20a3d3de82abce9d56 Mon Sep 17 00:00:00 2001 From: Marius Gerbershagen Date: Sat, 27 Jan 2024 11:30:23 +0100 Subject: [PATCH] Makefile: allow both install and flatinstall targets --- Makefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.in b/Makefile.in index 961a4d45a..ef55a07be 100644 --- a/Makefile.in +++ b/Makefile.in @@ -77,6 +77,8 @@ INSTALL_TARGET = @INSTALL_TARGET@ install: build/Makefile cd build; $(MAKE) $(INSTALL_TARGET) +flatinstall: build/Makefile + cd build; $(MAKE) flatinstall uninstall: cd build; $(MAKE) uninstall