diff options
Diffstat (limited to 'tools/Rules.in')
-rw-r--r-- | tools/Rules.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/Rules.in b/tools/Rules.in index ca930ec8..f00c85d1 100644 --- a/tools/Rules.in +++ b/tools/Rules.in @@ -68,12 +68,14 @@ subdir: all.o all.o: $(objs) # $(LD) -r -o $@ $^ # Changed to $(CC) because $(LD) has problems with crosscompiling - $(CC) -nostdlib -r -o $@ $^ + @echo LD -r -o $@ $^ + @$(CC) -nostdlib -r -o $@ $^ endif %.o: $(src-path)%.c - $(CC) $(CFLAGS) -o $@ -c $< + @echo CC -o $@ -c $< + @$(CC) $(CFLAGS) -o $@ -c $< ifndef source-dep source-dep := $(source) |