CFLAGS := -g -Wall

all: victim.o

install: victim
	cp -f victim ../../bin

clean:
	rm -f victim *.o
