We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44759c5 commit 806c1baCopy full SHA for 806c1ba
CHANGELOG.md
@@ -14,3 +14,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
### Fixed
15
16
- Fix makefile dependencies.
17
+- Fix makefile to use source directory for build dependencies.
Makefile.in
@@ -61,7 +61,7 @@ $(OBJECTS): .depend
61
62
.depend:
63
@cat /dev/null > $@
64
- @for x in $(OBJECTS:.o=); do echo "$${x}.o: $${x}.c $${x}.d" >> $@; done
+ @for x in $(OBJECTS:.o=); do echo "$${x}.o: $(SOURCE)/$${x}.c $${x}.d" >> $@; done
65
66
-include .depend
67
$(DEPENDS):
0 commit comments