summaryrefslogtreecommitdiff
path: root/rbutil/mktccboot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/mktccboot/Makefile')
-rw-r--r--rbutil/mktccboot/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/rbutil/mktccboot/Makefile b/rbutil/mktccboot/Makefile
new file mode 100644
index 0000000000..f3c0409b2a
--- /dev/null
+++ b/rbutil/mktccboot/Makefile
@@ -0,0 +1,21 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9TOOLSDIR=../../tools
10CFLAGS := -O -g -W -Wall -Wshadow -pedantic -I$(TOOLSDIR)
11
12all: mktccboot
13
14telechips.o: $(TOOLSDIR)/telechips.c $(TOOLSDIR)/telechips.h
15 $(SILENT)$(CC) $(CFLAGS) $(TOOLSDIR)/telechips.c -c -o $@
16
17mktccboot: mktccboot.c telechips.o
18 $(SILENT)$(CC) $(CFLAGS) $+ -o $@
19
20clean:
21 rm -f telechips.o mktccboot