summaryrefslogtreecommitdiff
path: root/rbutil
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil')
-rw-r--r--rbutil/mktccboot/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/rbutil/mktccboot/Makefile b/rbutil/mktccboot/Makefile
index 3f23e044d6..cd8a539648 100644
--- a/rbutil/mktccboot/Makefile
+++ b/rbutil/mktccboot/Makefile
@@ -45,16 +45,17 @@ OUT = $(TARGET_DIR)build$(RBARCH)
45 45
46all: $(OUTPUT) 46all: $(OUTPUT)
47 47
48$(TOOLSDIR)/telechips.o: $(TOOLSDIR)/telechips.[ch] 48$(OUT)/telechips.o: $(TOOLSDIR)/telechips.[ch]
49 make -C $(TOOLSDIR) $(TARGET_DIR)telechips.o 49 @echo CC $<
50 $(SILENT)$(CC) $(CFLAGS) -c -o $(OUT)/telechips.o $(TOOLSDIR)/telechips.c
50 51
51$(OUT)/mktccboot.o: mktccboot.[ch] $(TOOLSDIR)/telechips.o 52$(OUT)/mktccboot.o: mktccboot.[ch] $(OUT)/telechips.o
52 @echo CC $< 53 @echo CC $<
53 $(SILENT)$(CC) $(CFLAGS) -c -o $(OUT)/mktccboot.o -W -Wall mktccboot.c -DVERSION=\"$(APPVERSION)\" 54 $(SILENT)$(CC) $(CFLAGS) -c -o $(OUT)/mktccboot.o -W -Wall mktccboot.c -DVERSION=\"$(APPVERSION)\"
54 55
55$(OUTPUT): $(OUT) $(OUT)/mktccboot.o 56$(OUTPUT): $(OUT) $(OUT)/mktccboot.o
56 @echo CC $< 57 @echo LD $@
57 $(SILENT)$(CC) $(CFLAGS) -o $(OUTPUT) $(OUT)/mktccboot.o $(TOOLSDIR)/telechips.o 58 $(SILENT)$(CC) $(CFLAGS) -o $(OUTPUT) $(OUT)/mktccboot.o $(OUT)/telechips.o
58 59
59$(OUT)/libmktccboot.o: $(OUT)/mktccboot.o 60$(OUT)/libmktccboot.o: $(OUT)/mktccboot.o
60 @echo CC $< 61 @echo CC $<