source: tests/Makefile @ ed5df81

Last change on this file since ed5df81 was ed5df81, checked in by Jelmer Vernooij <jelmer@…>, at 2007-01-21T21:17:11Z

Add unit testing for user code

  • Property mode set to 100644
File size: 603 bytes
RevLine 
[c2fa827]1include ../Makefile.settings
2
3LFLAGS +=-lcheck
4
[66b9e86e]5all: check
[7bcdde3]6        ./check $(CHECKFLAGS)
[c2fa827]7
[66b9e86e]8clean:
9        rm -f check *.o
10
[2c7df62]11main_objs = account.o bitlbee.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]12
[ed5df81]13test_objs = check.o check_util.o check_nick.o check_md5.o check_irc.o check_help.o check_user.o
[66b9e86e]14
[2c7df62]15check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o
[c2fa827]16        @echo '*' Linking $@
17        @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS)
18
19%.o: %.c
20        @echo '*' Compiling $<
21        @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.