source: tests/Makefile @ 7bee5af

Last change on this file since 7bee5af was c227706, checked in by Jelmer Vernooij <jelmer@…>, at 2006-12-24T19:35:13Z

Refactor the help code to take a filename rather than using the global struct.

  • Property mode set to 100644
File size: 590 bytes
Line 
1include ../Makefile.settings
2
3LFLAGS +=-lcheck
4
5all: check
6        ./check $(CHECKFLAGS)
7
8clean:
9        rm -f check *.o
10
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
12
13test_objs = check.o check_util.o check_nick.o check_md5.o check_irc.o check_help.o
14
15check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o
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.