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 564cb4d commit f6125d6Copy full SHA for f6125d6
host-rules.mk
@@ -1,17 +1,17 @@
1
%.o: %.c
2
- $(E) "[TC] Compiling $<"
+ $(E) "[C] Compiling $<"
3
$(Q)$(HOST_CC) -Wall -Werror $(addprefix -I, $(HOST_INCLUDES)) $(HOST_CFLAGS) $(HOST_CPPFLAGS) -g -c -o $@ $<
4
5
%.o: %.cc
6
- $(E) "[TCXX] Compiling $<"
+ $(E) "[CXX] Compiling $<"
7
$(Q)$(HOST_CXX) -Wall -Werror $(addprefix -I, $(HOST_INCLUDES)) $(HOST_CFLAGS) $(HOST_CPPFLAGS) -g -c -o $@ $<
8
9
%.o: %.cpp
10
11
12
13
%.o: %.s
14
- $(E) "[TS] Compiling $<"
+ $(E) "[S] Compiling $<"
15
$(Q)$(HOST_AS) $(addprefix -I, $(HOST_INCLUDES)) $(HOST_ASFLAGS) $(HOST_CPPFLAGS) -g -c -o $@ $<
16
17
%.dep: %.c
0 commit comments