diff options
Diffstat (limited to 'src/tool/Makefile')
-rw-r--r-- | src/tool/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/tool/Makefile b/src/tool/Makefile new file mode 100644 index 000000000..d8614c300 --- /dev/null +++ b/src/tool/Makefile @@ -0,0 +1,10 @@ +all: adduser convert
+
+adduser:
+ $(CC) -o ../../tools/$@ adduser.c
+
+convert:
+ $(CC) -o ../../tools/$@ convert.c
+
+clean:
+ rm -rf ../../tools/adduser ../../tools/convert
|