diff options
author | Simon Rettberg | 2018-11-14 14:37:31 +0100 |
---|---|---|
committer | Simon Rettberg | 2018-11-14 14:37:31 +0100 |
commit | 8b8ed36516e9a40df6ac9ac46ab355fee0e5b5f0 (patch) | |
tree | b0267df71f0807319e7e80cf18a27dde1382cc90 /Makefile | |
parent | Started work on proxy-side uid generation/tracking (diff) | |
download | ldadp-8b8ed36516e9a40df6ac9ac46ab355fee0e5b5f0.tar.gz ldadp-8b8ed36516e9a40df6ac9ac46ab355fee0e5b5f0.tar.xz ldadp-8b8ed36516e9a40df6ac9ac46ab355fee0e5b5f0.zip |
Support generating uidNumbers on proxy
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -41,7 +41,7 @@ LIBS+=-g -lowfat -lssl -lcrypto %: %.c $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) ${LIBS} -ldadp: version.in.h tmpbuffer.o ini.o client.o server.o helper.o proxy.o epoll.o openssl.o lstring.o ldap.a asn1.a +ldadp: version.in.h tmpbuffer.o ini.o client.o server.o helper.o proxy.o epoll.o openssl.o lstring.o uidmap.o hashmap.o ldap.a asn1.a version.in.h: ./gen-version @@ -60,10 +60,12 @@ ini.o: ini.c ini.h client.o: client.c client.h types.h server.o: server.c server.h types.h helper.o: helper.c helper.h types.h -proxy.o: proxy.c proxy.h types.h helper.h +proxy.o: proxy.c proxy.h types.h helper.h lstring.h epoll.o: epoll.c epoll.h types.h openssl.o: openssl.c openssl.h types.h lstring.o: lstring.c asn1.h types.h +uidmap.o: uidmap.c uidmap.h hashmap.h lstring.h +hashmap.o: hashmap.c hashmap.h fmt_asn1int.o: fmt_asn1int.c asn1.h fmt_asn1intpayload.o: fmt_asn1intpayload.c asn1.h |