diff --git a/makefile b/makefile index 84a0c0f..a865831 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,10 @@ +.POSIX: + CC ?= gcc CFLAGS = -Wall -pedantic --std=c99 -O2 DBG_CFLAGS = -Wall -Werror -pedantic --std=c99 -O0 -g -LDFLAGS != if [ "$(uname)" = 'Linux' ]; then printf '-lcrypt'; fi +SYSTEM != uname +LDFLAGS != if [ '${SYSTEM}' = 'Linux' ]; then echo '-lcrypt'; fi PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man