[svn] commit: r46 - /experiments/jelte-configuration/Makefile.in
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Oct 2 00:19:39 UTC 2009
Author: jinmei
Date: Fri Oct 2 00:19:38 2009
New Revision: 46
Log:
fixed Makefile.in so that it will correctly work with configure
Modified:
experiments/jelte-configuration/Makefile.in
Modified: experiments/jelte-configuration/Makefile.in
==============================================================================
--- experiments/jelte-configuration/Makefile.in (original)
+++ experiments/jelte-configuration/Makefile.in Fri Oct 2 00:19:38 2009
@@ -1,11 +1,30 @@
+# Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
+# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
+# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+
+# $Id$
+
+CFLAGS = @CFLAGS@
+LDFLAGS = @LDFLAGS@
all: config_manager
config_manager: config_manager.cc config_obj.o
- g++ -g -lxerces-c -o config_manager config_obj.o config_manager.cc
+ $(CXX) -g $(CFLAGS) $(LDFLAGS) -lxerces-c -o config_manager \
+ config_obj.o config_manager.cc
config_obj.o: config_obj.cc config_obj.hh
- g++ -g -c -o config_obj.o config_obj.cc
+ $(CXX) -g $(CFLAGS) -c -o config_obj.o config_obj.cc
clean:
rm -f config_manager *.o myconf_new.conf
More information about the bind10-changes
mailing list