You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@locus.apache.org on 2000/12/08 21:11:28 UTC

cvs commit: apr-util/test Makefile.in

rbb         00/12/08 12:11:27

  Modified:    test     Makefile.in
  Log:
  Get the testdbm file working.
  
  Revision  Changes    Path
  1.2       +14 -0     apr-util/test/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-util/test/Makefile.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile.in	2000/12/02 16:13:50	1.1
  +++ Makefile.in	2000/12/08 20:11:23	1.2
  @@ -1,3 +1,17 @@
  +targets =
   
  +PROGRAMS = dbu
  +
   top_builddir = @top_builddir@
   include $(top_builddir)/build/rules.mk
  +
  +PROGRAM_LDADD        = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
  +PROGRAM_DEPENDENCIES = ../srclib/apr-util/libaprutil.la \
  +	../srclib/apr/libapr.a
  +
  +test: $(PROGRAMS)
  +
  +dbu_OBJECTS = testdbm.lo
  +dbu: $(dbu_OBJECTS)
  +	$(LINK) $(dbu_OBJECTS) $(PROGRAM_LDADD)
  +