summaryrefslogtreecommitdiff
path: root/Makefile
blob: 351c2185549180308263346f0e14f347cea9f04b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC = cc
CFLAGS = -m32 -fno-stack-protector -no-pie -g
WARNFLAGS = -Wno-deprecated-declarations -Wno-stringop-overflow
SRC = vuln.c
TARGET = vuln

all: $(TARGET)

$(TARGET): $(SRC)
	$(CC) $(CFLAGS) $(WARNFLAGS) -o $(TARGET) $(SRC)

clean:
	rm -f $(TARGET)