passgen/Makefile

18 lines
255 B
Makefile
Raw Normal View History

2024-06-16 01:07:05 +00:00
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