remove option -v
[cfe_generate_password.git] / Makefile
1 PROG=cfe_gen_pass
2 SRC=cfe_generate_password
3 CFLAGS=-std=c11
4
5 $(PROG): $(SRC).c
6         $(CC) $(CFLAGS) -o $@ $<
7
8 clean:
9         rm -f $(PROG)
10
11 phony: clean