We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6455339 commit ead43bfCopy full SHA for ead43bf
makefile
@@ -0,0 +1,10 @@
1
+CFLAGS = -O0 -std=gnu99
2
+
3
+ARTIFACT = exploit
4
+SOURCE = exploit.c
5
6
+all: $(ARTIFACT)
7
8
+$(PROGRAM): $(SOURCE) ; $(CC) $(CFLAGS) -o $(ARTIFACT) $(SOURCE)
9
10
+clean: ; rm -f $(ARTIFACT)
0 commit comments