cLK/lk/target/htcleo/tools/makefile

17 lines
453 B
Makefile
Raw Normal View History

2011-11-06 23:48:03 +00:00
#Makefile to generate tinboot
2011-11-06 23:26:22 +00:00
SRC_DIR := target/$(TARGET)/tools
2011-11-06 23:48:03 +00:00
EXTRA_CLEANDEPS += tinboot_clean
2011-11-06 23:26:22 +00:00
2011-11-06 23:48:03 +00:00
APPSBOOTHEADER: $(BUILDDIR)/tinboot
2011-11-06 23:26:22 +00:00
2011-11-06 23:48:03 +00:00
$(BUILDDIR)/tinboot.o: $(SRC_DIR)/tinboot.S $(OUTBIN)
$(TOOLCHAIN_PREFIX)as $(SRC_DIR)/tinboot.S -I "$(BUILDDIR)" -o $(BUILDDIR)/tinboot.o
2011-11-06 23:26:22 +00:00
2011-11-06 23:48:03 +00:00
$(BUILDDIR)/tinboot: $(BUILDDIR)/tinboot.o
$(OBJCOPY) $(BUILDDIR)/tinboot.o -O binary $(BUILDDIR)/tinboot
2011-11-06 23:26:22 +00:00
2011-11-06 23:48:03 +00:00
tinboot_clean:
rm -f $(BUILDDIR)/tinboot.o $(BUILDDIR)/tinboot