X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/a7b2012bc823f95ef326ba0b8da111ee7f1ca9b9..a5893daf89c5b50b93e7f2166963bef09604f161:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 2fc6a40..02cdbab 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ # Copyright (C) 1997-1999 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.5 +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