source: tests/Makefile @ 77fc000c

Last change on this file since 77fc000c was de49316, checked in by Wilmer van der Gaast <wilmer@…>, at 2008-12-13T12:08:05Z

Killed the test for setting non-existing variables since I killed support
for them as well. Thanks to cedk@… for noticing (Bug #448).

Also including chat.o when building the tests to fix linking issues.

  • Property mode set to 100644
File size: 709 bytes
Line 
1-include ../Makefile.settings
2
3LFLAGS +=-lcheck
4
5all: check
6        ./check $(CHECKFLAGS)
7
8clean:
9        rm -f check *.o
10
11distclean: clean
12
13main_objs = account.o bitlbee.o chat.o conf.o crypting.o help.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_xml.o storage_text.o user.o
14
15test_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_crypting.o check_set.o check_jabber_sasl.o check_jabber_util.o
16
17check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o
18        @echo '*' Linking $@
19        @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS)
20
21%.o: %.c
22        @echo '*' Compiling $<
23        @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.