source: tests/Makefile @ f60079b

Last change on this file since f60079b was f60079b, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-05-25T22:26:54Z

Allow one to run the configure script from a different directory and put all
build files in there. I need this to properly make Debian package variants
(i.e. libpurple and native).

  • Property mode set to 100644
File size: 763 bytes
RevLine 
[dcf0f3e]1-include ../Makefile.settings
[f60079b]2ifdef SRCDIR
3SRCDIR := $(SRCDIR)tests/
4endif
[c2fa827]5
6LFLAGS +=-lcheck
7
[66b9e86e]8all: check
[7bcdde3]9        ./check $(CHECKFLAGS)
[c2fa827]10
[66b9e86e]11clean:
12        rm -f check *.o
13
[dcf0f3e]14distclean: clean
15
[de49316]16main_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
[1fc2958]17
[3e6764a]18test_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
[66b9e86e]19
[2c7df62]20check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o
[c2fa827]21        @echo '*' Linking $@
22        @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS)
23
[f60079b]24%.o: $(SRCDIR)%.c
[c2fa827]25        @echo '*' Compiling $<
26        @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.