passgen/Makefile
2024-06-15 21:07:05 -04:00

17 lines
255 B
Makefile

all: passgen
WARNINGS = -Wall
DEBUG = -ggdb -fno-omit-frame-pointer
OPTIMIZE = -O2
passgen: Makefile passgen.c
$(CC) -o $@ $(WARNINGS) $(DEBUG) $(OPTIMIZE) passgen.c
clean:
rm -f passgen
install:
echo "Installing is not supported"
run:
./passgen