diff options
Diffstat (limited to 'roms/u-boot-sam460ex/tools/easylogo/Makefile')
-rw-r--r-- | roms/u-boot-sam460ex/tools/easylogo/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roms/u-boot-sam460ex/tools/easylogo/Makefile b/roms/u-boot-sam460ex/tools/easylogo/Makefile new file mode 100644 index 000000000..d8e28b0e1 --- /dev/null +++ b/roms/u-boot-sam460ex/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 |