INN commit: trunk/storage (2 files)
INN Commit
rra at isc.org
Tue Oct 28 19:49:53 UTC 2014
Date: Tuesday, October 28, 2014 @ 12:49:53
Author: iulius
Revision: 9733
Build the debugging version of buffindexed and tradindexed so that it can be included in a shared library if desired
Modified:
trunk/storage/buffindexed/ovmethod.mk
trunk/storage/tradindexed/ovmethod.mk
-------------------------+
buffindexed/ovmethod.mk | 8 ++++----
tradindexed/ovmethod.mk | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
Modified: buffindexed/ovmethod.mk
===================================================================
--- buffindexed/ovmethod.mk 2014-10-27 19:43:54 UTC (rev 9732)
+++ buffindexed/ovmethod.mk 2014-10-28 19:49:53 UTC (rev 9733)
@@ -1,8 +1,8 @@
# This rule requires a compiler that supports -o with -c. Since it's normally
# used by developers, that should be acceptable.
-buffindexed/buffindexed_d.o: buffindexed/buffindexed.c
- $(CC) $(CFLAGS) -DBUFF_DEBUG -c -o $@ buffindexed/buffindexed.c
+buffindexed/buffindexed_d.$(EXTOBJ): buffindexed/buffindexed.c
+ $(LIBCC) $(CFLAGS) -DBUFF_DEBUG -c -o $@ buffindexed/buffindexed.c
-buffindexed/buffindexed_d: buffindexed/buffindexed_d.o libstorage.$(EXTLIB) $(LIBHIST)
- $(LIBLD) $(LDFLAGS) -o $@ buffindexed/buffindexed_d.o \
+buffindexed/buffindexed_d: buffindexed/buffindexed_d.$(EXTOBJ) libstorage.$(EXTLIB) $(LIBHIST)
+ $(LIBLD) $(LDFLAGS) -o $@ buffindexed/buffindexed_d.$(EXTOBJ) \
$(LIBSTORAGE) $(LIBHIST) $(LIBINN) $(STORAGE_LIBS) $(LIBS)
Modified: tradindexed/ovmethod.mk
===================================================================
--- tradindexed/ovmethod.mk 2014-10-27 19:43:54 UTC (rev 9732)
+++ tradindexed/ovmethod.mk 2014-10-28 19:49:53 UTC (rev 9733)
@@ -1,6 +1,6 @@
-tradindexed/tdx-util.o: tradindexed/tdx-util.c
- $(CC) $(CFLAGS) -c -o $@ tradindexed/tdx-util.c
+tradindexed/tdx-util.$(EXTOBJ): tradindexed/tdx-util.c
+ $(LIBCC) $(CFLAGS) -c -o $@ tradindexed/tdx-util.c
-tradindexed/tdx-util: tradindexed/tdx-util.o libstorage.$(EXTLIB) $(LIBHIST)
- $(LIBLD) $(LDFLAGS) -o $@ tradindexed/tdx-util.o \
+tradindexed/tdx-util: tradindexed/tdx-util.$(EXTOBJ) libstorage.$(EXTLIB) $(LIBHIST)
+ $(LIBLD) $(LDFLAGS) -o $@ tradindexed/tdx-util.$(EXTOBJ) \
$(LIBSTORAGE) $(LIBHIST) $(LIBINN) $(STORAGE_LIBS) $(LIBS)
More information about the inn-committers
mailing list