Update .cvsignore and Makefile dependencies.
[ircu2.10.12-pk.git] / ircd / test / Makefile.in
1 top_srcdir = @top_srcdir@
2 VPATH = @srcdir@
3 CPPFLAGS = -I${top_srcdir}/include -I../..
4 CFLAGS   = -g -Wall
5
6 TESTPROGS = \
7         ircd_chattr_t \
8         ircd_string_t \
9         ircd_in_addr_t
10
11 all: ${TESTPROGS}
12
13 build: ${TESTPROGS}
14
15 depend:
16
17 ircd_chattr_t: ircd_chattr_t.o test_stub.o ../ircd_string.o
18         ${CC} -o $@ $^
19
20 ircd_string_t: ircd_string_t.o test_stub.o ../ircd_string.o
21         ${CC} -o $@ $^
22
23 ircd_in_addr_t: ircd_in_addr_t.o test_stub.o ../ircd_alloc.o ../ircd_string.o ../match.o ../numnicks.o
24         ${CC} -o $@ $^
25
26 .PHONY: distclean clean
27
28 distclean: clean
29         rm -f Makefile
30
31 clean:
32         rm -f core *.o ${TESTPROGS}