chiark / gitweb /
Regression tests run, first one written.
[adns.git] / src / Makefile.in
index e4964aff07ab51f64c64adec678f0598137ce01a..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
 
-HCPPFLAGS= \
- -Dsocket=Hsocket -Dfcntl=Hfcntl -Dgettimeofday=Hgettimeofday \
- -Dsendto=Hsendto -Drecvfrom=Hrecvfrom -Dselect=Hselect -Dconnect=Hconnect \
- -Dread=Hread -Dwrite=Hwrite -Dclose=Hclose
+include ../settings.make
+include adns.make
 
-LIBOBJS=       types.o event.o query.o reply.o general.o setup.o transmit.o parse.o
-HARNLOBJS=     $(addsuffix _d.o, $(basename $(LIBOBJS)))
-ALLOBJS=       $(LIBOBJS) $(HARNLOBJS) dtest.o harness.o
+install:
 
-all:           dtest
+ALLOBJS=       $(LIBOBJS)
 
-harness:       harness.o $(HARNLOBJS)
+libadns.a:     $(LIBOBJS)
+               rm -f $@
+               $(AR) cqsv $@ $(LIBOBJS)
 
-dtest:         dtest.o $(LIBOBJS)
-
-%_d.o:         %.c
-               $(CC) $(HCPPFLAGS) -c -g -o $@ $<
-
-clean:
-               rm -f dtest *.o
-
-$(HARNLOBJS):  adns.h internal.h
 $(LIBOBJS):    adns.h internal.h
-dtest.o:       adns.h