aboutsummaryrefslogtreecommitdiff
path: root/challenge-272/atschneid/c/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-272/atschneid/c/makefile')
-rw-r--r--challenge-272/atschneid/c/makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/challenge-272/atschneid/c/makefile b/challenge-272/atschneid/c/makefile
new file mode 100644
index 0000000000..f22871e256
--- /dev/null
+++ b/challenge-272/atschneid/c/makefile
@@ -0,0 +1,10 @@
+CFLAGS := -g -Wall -std=c11 -O3
+
+all: ch-1 ch-2
+
+ch-1: ch-1.c
+ cc $(CFLAGS) ch-1.c -o ch-1
+
+ch-2: ch-2.c
+ cc $(CFLAGS) ch-2.c -o ch-2
+