1
0
Fork 0

Fix Makefile install target

Update target all before installing
This commit is contained in:
herman ten brugge 2023-03-09 16:00:46 +01:00
parent 3f0a1719dc
commit 80909254c4
1 changed files with 2 additions and 2 deletions

View File

@ -155,8 +155,8 @@ cross: $(LIBTCC1_CROSS) $(PROGS_CROSS)
# build specific cross compiler & lib
cross-%: %-tcc$(EXESUF) %-libtcc1.a ;
install: ; @$(MAKE) --no-print-directory install$(CFG)
install-strip: ; @$(MAKE) --no-print-directory install$(CFG) CONFIG_strip=yes
install: all ; @$(MAKE) --no-print-directory install$(CFG)
install-strip: all ; @$(MAKE) --no-print-directory install$(CFG) CONFIG_strip=yes
uninstall: ; @$(MAKE) --no-print-directory uninstall$(CFG)
ifdef CONFIG_cross