source: tests/Makefile @ c2fa827

Last change on this file since c2fa827 was c2fa827, checked in by Jelmer Vernooij <jelmer@…>, at 2006-06-16T11:48:52Z

Add unit testing infrastructure.

  • Property mode set to 100644
File size: 240 bytes
Line 
1include ../Makefile.settings
2
3LFLAGS +=-lcheck
4
5all: check
6        ./check
7
8check: check.o check_util.o ../util.o
9        @echo '*' Linking $@
10        @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS)
11
12%.o: %.c
13        @echo '*' Compiling $<
14        @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.