summaryrefslogtreecommitdiff
path: root/utils/atj2137/atjboottool/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/atj2137/atjboottool/Makefile')
-rw-r--r--utils/atj2137/atjboottool/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/atj2137/atjboottool/Makefile b/utils/atj2137/atjboottool/Makefile
new file mode 100644
index 0000000000..14f25475f6
--- /dev/null
+++ b/utils/atj2137/atjboottool/Makefile
@@ -0,0 +1,20 @@
1DEFINES=
2CC=gcc
3LD=gcc
4CFLAGS=-g -std=c99 -W -Wall $(DEFINES)
5LDFLAGS=
6BINS=atjboottool
7
8all: $(BINS)
9
10%.o: %.c
11 $(CC) $(CFLAGS) -c -o $@ $<
12
13atjboottool: atjboottool.o misc.o atj_tables.o
14 $(LD) -o $@ $^ $(LDFLAGS)
15
16clean:
17 rm -fr *.o
18
19veryclean:
20 rm -rf $(BINS)