source: tests/Makefile @ 2305488

Last change on this file since 2305488 was 2305488, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-10-07T21:45:41Z

Adding test for arc.c so that I can now safely replace the RC4 code with a
(compatible) ArcFour implementation.

  • Property mode set to 100644
File size: 663 bytes
RevLine 
[dcf0f3e]1-include ../Makefile.settings
[c2fa827]2
3LFLAGS +=-lcheck
4
[66b9e86e]5all: check
[7bcdde3]6        ./check $(CHECKFLAGS)
[c2fa827]7
[66b9e86e]8clean:
9        rm -f check *.o
10
[dcf0f3e]11distclean: clean
12
[2c7df62]13main_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]14
[2305488]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
[66b9e86e]16
[2c7df62]17check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o
[c2fa827]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.