mk/prog.mk: rebuild static binaries if static libs change

This commit is contained in:
Duncaen 2019-03-22 15:44:15 +01:00
parent bf5eba411b
commit 9139cc79bf

View File

@ -46,9 +46,9 @@ endif
@printf " [CC]\t\t$@\n"
${SILENT}$(CC) $(CPPFLAGS) $(CFLAGS) $(EXTRA_CFLAGS) -c $<
$(BIN).static: $(OBJS)
$(BIN).static: $(OBJS) $(STATIC_LIBS)
@printf " [CCLD]\t\t$@\n"
${SILENT}$(CC) -static $^ $(CPPFLAGS) -L$(TOPDIR)/lib \
${SILENT}$(CC) -static $(OBJS) $(CPPFLAGS) -L$(TOPDIR)/lib \
$(CFLAGS) $(LDFLAGS) $(STATIC_LIBS) -o $@
$(BIN): $(OBJS)