Update .cvsignore and Makefile dependencies.
[ircu2.10.12-pk.git] / ircd / test / Makefile.in
index 8e6a05d0fccf6e60f385789f51ca8821224f088a..98af33d9676e03da8e19868c2526b33082ecb56d 100644 (file)
@@ -1,6 +1,6 @@
 top_srcdir = @top_srcdir@
 VPATH = @srcdir@
-CPPFLAGS = -I$(top_srcdir)/include -I../..
+CPPFLAGS = -I${top_srcdir}/include -I../..
 CFLAGS   = -g -Wall
 
 TESTPROGS = \
@@ -10,6 +10,10 @@ TESTPROGS = \
 
 all: ${TESTPROGS}
 
+build: ${TESTPROGS}
+
+depend:
+
 ircd_chattr_t: ircd_chattr_t.o test_stub.o ../ircd_string.o
        ${CC} -o $@ $^
 
@@ -17,9 +21,12 @@ ircd_string_t: ircd_string_t.o test_stub.o ../ircd_string.o
        ${CC} -o $@ $^
 
 ircd_in_addr_t: ircd_in_addr_t.o test_stub.o ../ircd_alloc.o ../ircd_string.o ../match.o ../numnicks.o
-       $(CC) -o $@ $^
+       ${CC} -o $@ $^
+
+.PHONY: distclean clean
 
-.PHONY: clean
+distclean: clean
+       rm -f Makefile
 
 clean:
        rm -f core *.o ${TESTPROGS}