Makefile: allow both install and flatinstall targets

This commit is contained in:
Marius Gerbershagen 2024-01-27 11:30:23 +01:00
parent f6083876fd
commit 7bde88e813

View file

@ -77,6 +77,8 @@ INSTALL_TARGET = @INSTALL_TARGET@
install: build/Makefile install: build/Makefile
cd build; $(MAKE) $(INSTALL_TARGET) cd build; $(MAKE) $(INSTALL_TARGET)
flatinstall: build/Makefile
cd build; $(MAKE) flatinstall
uninstall: uninstall:
cd build; $(MAKE) uninstall cd build; $(MAKE) uninstall