First CTFs
This commit is contained in:
10
BOF/03_tiny_escape_room/Makefile
Normal file
10
BOF/03_tiny_escape_room/Makefile
Normal file
@@ -0,0 +1,10 @@
|
||||
CC = gcc
|
||||
CFLAGS = -fno-stack-protector -no-pie -O0 -g
|
||||
|
||||
all: escape_room
|
||||
|
||||
escape_room: main.c
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
|
||||
clean:
|
||||
rm -f escape_room
|
||||
Reference in New Issue
Block a user