aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2010-09-17 15:52:40 +0100
committerPeter Maydell <peter.maydell@linaro.org>2010-09-17 15:55:42 +0100
commit403d4b7621af96c47ea5e380f45e59967f79650c (patch)
treeb8a9c33a79cb71c8c80b2c132d56777de350d869 /Makefile
Initial commit (argument parsing and tcp setup only)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..aec5703
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+# trivial makefile for now
+PROG=risu
+SRCS=risu.c
+OBJS=$(SRCS:.c=.o)
+
+$(PROG): $(SRCS)
+ $(CC) -g -Wall -Werror -o $@ $^
+
+clean:
+ rm -f $(PROG) $(OBJS)