summaryrefslogtreecommitdiff
path: root/data/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'data/Makefile')
-rw-r--r--data/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/data/Makefile b/data/Makefile
new file mode 100644
index 0000000..65cf185
--- /dev/null
+++ b/data/Makefile
@@ -0,0 +1,10 @@
+all: data rservice xor
+
+data: data.c
+ cc -s -O -o data data.c
+rservice: rservice.c
+ cc -s -O -o rservice rservice.c
+xor: xor.c
+ cc -s -O -o xor xor.c
+clean:
+ rm -f *.o data rservice xor