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 18e4b35 commit 7e2f99bCopy full SHA for 7e2f99b
Makefile
@@ -72,9 +72,11 @@ install: $(PREFIX) $(BUILD) $(NIF)
72
$(OBJ): $(HEADERS) Makefile
73
74
$(BUILD)/%.o: src/%.c
75
+ @echo " CC $(notdir $@)"
76
$(CC) -c $(ERL_CFLAGS) $(CFLAGS) -o $@ $<
77
78
$(NIF): $(OBJ)
79
+ @echo " LD $(notdir $@)"
80
$(CC) -o $@ $(ERL_LDFLAGS) $(LDFLAGS) $^
81
82
$(PREFIX) $(BUILD):
@@ -84,3 +86,6 @@ clean:
84
86
$(RM) $(NIF) $(OBJ)
85
87
88
.PHONY: all clean calling_from_make install
89
+
90
+# Don't echo commands unless the caller exports "V=1"
91
+${V}.SILENT:
0 commit comments