X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=Makefile.in;h=4bfb72fee0ff3ae78df2cc624af740caeb12a2df;hb=e64c0ea5119df11b0c58885d9b2b6c1f3f8d7f79;hp=fd4680272520e1a6144c0e140b3a93fac399dfb7;hpb=2e377c33268caa7252ab61e40c8ee3d5402a9c14;p=adns.git diff --git a/Makefile.in b/Makefile.in index fd46802..4bfb72f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,10 +1,10 @@ # Makefile - top-level Makefile # # This file is -# Copyright (C) 1997-1999 Ian Jackson +# Copyright (C) 1997-2000 Ian Jackson # # It is part of adns, which is -# Copyright (C) 1997-1999 Ian Jackson +# Copyright (C) 1997-2000 Ian Jackson # Copyright (C) 1999 Tony Finch # # This program is free software; you can redistribute it and/or modify @@ -21,11 +21,18 @@ # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -DISTVERSION= 0.7 +DISTVERSION= 0.9 srcdir= @srcdir@ VPATH= @srcdir@ -SUBDIRS= src dynamic client regress +ENABLE_DYNAMIC= @ENABLE_DYNAMIC@ +ifeq ($(ENABLE_DYNAMIC),elf) +SUBDIRS_DYNAMIC=dynamic +else +SUBDIRS_DYNAMIC= +endif + +SUBDIRS= src $(SUBDIRS_DYNAMIC) client regress all install uninstall clean distclean mostlyclean maintainer-clean distprep: set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done