You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ma...@apache.org on 2004/11/09 09:47:02 UTC

cvs commit: apr-iconv/ccs Makefile.in

martin      2004/11/09 00:47:02

  Modified:    ccs      Makefile.in
  Log:
  Allow compilation with non-GNU make (problem noticed on FreeBSD-4.10)
  
  Revision  Changes    Path
  1.4       +4 -1      apr-iconv/ccs/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-iconv/ccs/Makefile.in,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -u -r1.3 -r1.4
  --- Makefile.in	28 May 2003 13:59:13 -0000	1.3
  +++ Makefile.in	9 Nov 2004 08:47:02 -0000	1.4
  @@ -60,5 +60,8 @@
   # bring in rules.mk for standard functionality
   @INCLUDE_RULES@
   
  -%.la: %.lo
  +.SUFFIXES:
  +.SUFFIXES: .c .lo .o .la
  +
  +.lo.la:
   	$(LIBTOOL) --mode=link $(COMPILE) -module -avoid-version -rpath @iconv_libdir@ $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@ $<