aboutsummaryrefslogtreecommitdiff
path: root/flags/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'flags/Makefile')
-rw-r--r--flags/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/flags/Makefile b/flags/Makefile
new file mode 100644
index 0000000..17fd13d
--- /dev/null
+++ b/flags/Makefile
@@ -0,0 +1,21 @@
+all: exec format rsa-runner simple
+
+exec: exec.c
+ gcc -o exec exec.c
+ chown root:exec exec
+ chmod 2755 exec
+
+format: format.c
+ gcc -o format format.c
+ chown root:format format
+ chmod 2755 format
+
+rsa-runner: rsa-runner.c
+ gcc -o rsa-runner rsa-runner.c
+ chown root:rsa rsa-runner
+ chmod 2755 rsa-runner
+
+simple: simple.c
+ gcc -o simple simple.c
+ chown root:simple simple
+ chmod 2755 simple