diff options
author | Simon Rettberg | 2018-11-09 15:35:46 +0100 |
---|---|---|
committer | Simon Rettberg | 2018-11-09 15:35:46 +0100 |
commit | ba817d465caa48b5b814853d8f16602da2d1a8a9 (patch) | |
tree | f082b752a8e2aed477aa57ff00f7244238769b41 /Makefile | |
parent | Remove memberOf filtering; not required for proper operation (diff) | |
download | ldadp-ba817d465caa48b5b814853d8f16602da2d1a8a9.tar.gz ldadp-ba817d465caa48b5b814853d8f16602da2d1a8a9.tar.xz ldadp-ba817d465caa48b5b814853d8f16602da2d1a8a9.zip |
Move string functions to lstring.[hc]
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 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 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 ldap.a asn1.a version.in.h: ./gen-version @@ -63,6 +63,7 @@ helper.o: helper.c helper.h types.h proxy.o: proxy.c proxy.h types.h helper.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 fmt_asn1int.o: fmt_asn1int.c asn1.h fmt_asn1intpayload.o: fmt_asn1intpayload.c asn1.h |