EXE=alloc format readpass readpass-good
# These CFLAGS are here to turn off all the fun protections in Ubuntu...
CFLAGS=-fno-stack-protector -O0 -Wno-format

all: $(EXE)

clean:
	rm -f $(EXE)

readpass-good: readpass.c
	$(CC) $(CFLAGS) -o $@ -DPERFORM_CLEANUP=1 $<
