source: tests/Makefile @ 50bb490

Last change on this file since 50bb490 was 50bb490, checked in by Dennis Kaarsemaker <dennis@…>, at 2016-03-25T18:07:53Z

ldap authentication backend

We only support the openldap scheme for now, with users that are
posixAccounts. Moreover, as the plugin cannot be configured directly,
you must configure libldap correctly in /etc/openldap/ldap.conf

  • Property mode set to 100644
File size: 891 bytes
RevLine 
[dcf0f3e]1-include ../Makefile.settings
[7fa5c19]2ifdef _SRCDIR_
3_SRCDIR_ := $(_SRCDIR_)tests/
[f60079b]4endif
[c2fa827]5
[6a6d7d8]6CFLAGS += $(shell pkg-config --cflags check)
7LFLAGS += $(shell pkg-config --libs check)
[c2fa827]8
[6a6d7d8]9all: check
[7bcdde3]10        ./check $(CHECKFLAGS)
[c2fa827]11
[66b9e86e]12clean:
13        rm -f check *.o
14
[dcf0f3e]15distclean: clean
16
[50bb490]17main_objs = bitlbee.o conf.o dcc.o help.o ipc.o irc.o irc_cap.o irc_channel.o irc_commands.o irc_im.o irc_send.o irc_user.o irc_util.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_xml.o auth.o auth_pam.o auth_ldap.o
[1fc2958]18
[3963fdd]19test_objs = check.o check_util.o check_nick.o check_md5.o check_arc.o check_irc.o check_help.o check_user.o check_set.o check_jabber_sasl.o check_jabber_util.o
[66b9e86e]20
[2c7df62]21check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o
[c2fa827]22        @echo '*' Linking $@
23        @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS)
24
[7fa5c19]25%.o: $(_SRCDIR_)%.c
[c2fa827]26        @echo '*' Compiling $<
27        @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.