chiark / gitweb /
Regression tests run, first one written.
[adns.git] / src / Makefile.in
index 317af60dbed2376bd59bbdff49433eed828172d9..d85bfc26e86169c479152f9d05b9a5e2855c37f0 100644 (file)
@@ -1,3 +1,5 @@
+# src/Makefile - library main Makefile
+# 
 #  This file is part of adns, which is Copyright (C) 1997, 1998 Ian Jackson
 #  
 #  This program is free software; you can redistribute it and/or modify
 #  along with this program; if not, write to the Free Software Foundation,
 #  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
 
-CC=gcc $(WARNS) $(WERROR) $(OPTIMISE) $(DEBUG) $(XCFLAGS)
-DEBUG=-g
-OPTIMISE=-O2
-WARNS= -Wall -Wmissing-prototypes -Wwrite-strings -Wstrict-prototypes \
-       -Wcast-qual -Wpointer-arith
-WERROR=-Werror
+TARGETS=       libadns.a
 
-LIBOBJS=       types.o event.o query.o reply.o general.o setup.o transmit.o parse.o
-ALLOBJS=       $(LIBOBJS) dtest.o
+include ../settings.make
+include adns.make
 
-all:           dtest
+install:
 
-dtest:         $(ALLOBJS)
+ALLOBJS=       $(LIBOBJS)
 
-clean:
-               rm -f dtest *.o
+libadns.a:     $(LIBOBJS)
+               rm -f $@
+               $(AR) cqsv $@ $(LIBOBJS)
 
 $(LIBOBJS):    adns.h internal.h
-dtest.o:       adns.h