summaryrefslogtreecommitdiffstats
path: root/u-boot/tools/easylogo/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'u-boot/tools/easylogo/Makefile')
-rw-r--r--u-boot/tools/easylogo/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/u-boot/tools/easylogo/Makefile b/u-boot/tools/easylogo/Makefile
new file mode 100644
index 0000000..d8e28b0
--- /dev/null
+++ b/u-boot/tools/easylogo/Makefile
@@ -0,0 +1,11 @@
+include $(TOPDIR)/config.mk
+
+all: $(obj)easylogo
+
+$(obj)easylogo: $(SRCTREE)/tools/easylogo/easylogo.c
+ $(HOSTCC) $(HOSTCFLAGS_NOPED) $(HOSTLDFLAGS) -o $@ $^
+
+clean:
+ rm -f $(obj)easylogo
+
+.PHONY: all clean