summaryrefslogtreecommitdiff
path: root/Makefile.GNU
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-27 23:42:05 +1000
committerDamien Miller <djm@mindrot.org>1999-10-27 23:42:05 +1000
commit332e67fde27c4017d2df8dafe05a55be3c7597cd (patch)
tree3c973d134c785a840e2f0c56aea886d8fa6f6b96 /Makefile.GNU
parent726a5b3be128911d2f38f73a6a8c9be6dde9bb3a (diff)
Attempt to clean up PAM code
Use PWDB getpw* functions if HAVE_PWDB defined Minor other tidyups
Diffstat (limited to 'Makefile.GNU')
-rw-r--r--Makefile.GNU4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.GNU b/Makefile.GNU
index f36bdb3df..097199527 100644
--- a/Makefile.GNU
+++ b/Makefile.GNU
@@ -1,8 +1,8 @@
1OPT_FLAGS=-g 1OPT_FLAGS=-g
2CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"/etc/ssh\" -DHAVE_PAM 2CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"/etc/ssh\" -DHAVE_PAM -DHAVE_PWDB
3TARGETS=bin/libssh.a bin/ssh bin/sshd bin/ssh-add bin/ssh-keygen bin/ssh-agent bin/scp 3TARGETS=bin/libssh.a bin/ssh bin/sshd bin/ssh-add bin/ssh-keygen bin/ssh-agent bin/scp
4LFLAGS=-L./bin 4LFLAGS=-L./bin
5LIBS=-lssh -lcrypto -lz -lutil -lpam -ldl 5LIBS=-lssh -lcrypto -lz -lutil -lpwdb -lpam -ldl
6AR=ar 6AR=ar
7RANLIB=ranlib 7RANLIB=ranlib
8 8