# # dnsutl - utilities to make DNS easier to configure # Copyright (C) 1991-1993, 1995, 1999, 2000, 2007 Peter Miller # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see # . # # # directory containing the source # srcdir = @srcdir@ VPATH = @srcdir@ # # the name of the install program to use # INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ # # the name of the compiler to use # CC = @CC@ # # The compiler flags to use # CFLAGS = @CFLAGS@ # # The linker flags to use # LDFLAGS = @LDFLAGS@ # # prefix for installation path # prefix = @prefix@ exec_prefix = @exec_prefix@ # # where to put the library directory # (contains data, don't use exec_prefix) # libdir = $(RPM_BUILD_ROOT)@libdir@ datadir = $(RPM_BUILD_ROOT)@datadir@ # # where to put the executables # bindir = $(RPM_BUILD_ROOT)@bindir@ # # where to put the manuals # mandir = $(RPM_BUILD_ROOT)@mandir@ # # Which yacc to use # YACC = @YACC@ # # extra libraries required for your system # LIBS = @LIBS@ # # shell to use to run tests and commands # SH = @SH@ # # command used to construct libraries # AR = ar # # program used to place index within libraries # RANLIB = @RANLIB@ # # Mess with the names of installed executables. # # The prefix is added to the front, the suffix is added to the back. # Both are usually empty. (The suffix does not include the executable # file extension.) # PROGRAM_PREFIX = @PROGRAM_PREFIX@ PROGRAM_SUFFIX = @PROGRAM_SUFFIX@ # # This is the file extension of executable files. # It is empty for UNIX, and .EXE for the unmentionable one. # EXEEXT = @EXEEXT@ # # This is the file extension of object files. # It is .o for UNIX, and .O or .OBJ for the unmentionable one. # OBJEXT = @OBJEXT@ # # This is the file extension of library files. NO DOT. # LIBEXT = a # # What program to use to resolve *roff includes. GNU Groff version 1.15 # and later understand the -I option, which is essential. # SOELIM = @SOELIM@ # # You should not need to alter anything below this point. #------------------------------------------------------------ default_target: all