added custom error messages (fixed existing implementation)
[iauth.git] / Makefile
1 CFLAGS=-O0 -g -Wall -Wshadow -Werror
2
3 all:
4         gcc -o iauth -O0 -g -Wall iauth.c iauth_io.c iauth_query.c iauth_cmd.c -Wshadow -Werror
5
6 library:
7         gcc -o libiauth.so
8
9 binary: