Add empty targets for dependencies in sub make file

This forces make to check if dependency (eg ../Common/Common.a) is more
recent than the target
This commit is contained in:
Geoffrey Merck F4FXL - KC3FRA 2018-11-11 18:35:30 +01:00
parent e66484340b
commit dcb5b4b455
17 changed files with 45 additions and 17 deletions

View file

@ -3,7 +3,7 @@ OBJECTS = TextTransmit.o
.PHONY: all
all: texttransmitd
texttransmitd: $(OBJECTS)
texttransmitd: $(OBJECTS) ../Common/Common.a
$(CXX) $(OBJECTS) ../Common/Common.a $(LDFLAGS) $(LIBS) -o texttransmitd
-include $(OBJECTS:.o=.d)
@ -20,3 +20,4 @@ install:
clean:
$(RM) texttransmitd *.o *.d *.bak *~
../Common/Common.a: