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 107bf52 commit 40818aaCopy full SHA for 40818aa
src/unix/Makefile.in
@@ -54,9 +54,10 @@ R: Makedeps
54
## https://community.intel.com/t5/Intel-C-Compiler/Troubles-with-getrusage-when-using-icx/m-p/1509374#M41116
55
INTEL_ICX_FIX = @INTEL_ICX_FIX@
56
sys-unix.o: $(srcdir)/sys-unix.c
57
- $(CC) $(ALL_CPPFLAGS) $(ALL_CFLAGS) $(INTEL_ICX_FIX) -c $< -o $@
+ $(CC) $(ALL_CPPFLAGS) $(ALL_CFLAGS) $(INTEL_ICX_FIX) -c $(srcdir)/sys-unix.c -o $@
58
+## note $< is unspecified for target rules: when rebuilding with pdpmake
59
+## it could evaluate to updated prerequisites such as ../include/Defn.h
60
-## is this portable?
61
../include/Rversion.h:
62
(cd ../include; $(MAKE) $(@F))
63
0 commit comments