source: tests/Makefile @ bd28e6a

Last change on this file since bd28e6a was 1fc2958, checked in by Jelmer Vernooij <jelmer@…>, at 2006-06-16T12:07:51Z

Add checks for nick functions as well, fix bug where nick lengths weren't
being honored.

  • Property mode set to 100644
File size: 479 bytes
Line 
1include ../Makefile.settings
2
3LFLAGS +=-lcheck
4
5all: check
6        ./check
7
8main_objs = account.o bitlbee.o conf.o crypting.o help.o ini.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_text.o url.o user.o util.o
9
10check: check.o check_util.o check_nick.o $(addprefix ../, $(main_objs)) ../protocols/protocols.o
11        @echo '*' Linking $@
12        @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS)
13
14%.o: %.c
15        @echo '*' Compiling $<
16        @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.