apps/platform: Fix an error in dependency generation introduced with last changes

This commit is contained in:
Gregory Nutt 2017-05-13 12:36:25 -06:00
parent 7a21692496
commit 041d0d2c68

View File

@ -137,7 +137,7 @@ context: dirlinks
# Dependencies
.depend: Makefile $(SRCS) $(PLATFORMDIR)
$(Q) $(MKDEP) --obj-path bin --obj-suffix $(OBJEXT) --dep-path $(PLATFORMDIR) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
$(Q) $(MKDEP) --obj-path bin --obj-suffix $(OBJEXT) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
$(Q) touch $@
depend: .depend