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