only openbsd doesn't use -lcrypt

master
Alessandro Mauri 3 years ago
parent 1594ec867b
commit 01c4b00352
  1. 2
      makefile

@ -4,7 +4,7 @@ CC ?= gcc
CFLAGS = -Wall -pedantic --std=c99 -O2
DBG_CFLAGS = -Wall -Werror -pedantic --std=c99 -O0 -g
SYSTEM != uname
LDFLAGS != if [ '${SYSTEM}' = 'Linux' ]; then echo '-lcrypt'; fi
LDFLAGS != if [ '${SYSTEM}' != 'OpenBSD' ]; then echo '-lcrypt'; fi
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

Loading…
Cancel
Save