remove trailing linefeed from title
[cfe_generate_password.git] / Makefile
index 3aaf3cc..77fa8c5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,9 @@
 PROG=cfe_gen_pass
 SRC=cfe_generate_password
+CFLAGS=-std=c11
 
 $(PROG): $(SRC).c
-       $(CC) -o $@ $< $(CFLAGS)
+       $(CC) $(CFLAGS) -o $@ $<
 
 clean:
        rm -f $(PROG)