aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7dc6a5ad8aac926e363a9ba7213ccee7cdee3938 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CC = gcc
CFLAGS = -Wall -Wextra -Wshadow -Werror -pedantic

default: passgen

passgen: passgen.c
	$(CC) $(CFLAGS) -o passgen passgen.c

clean: 
	rm -f *.o
	rm -f passgen