From: Jean-Claude Wippler Date: Thu, 30 May 2002 00:04:15 +0000 (+0000) Subject: avoid make failure on some platforms X-Git-Tag: vfs-1-2~39 X-Git-Url: http://privyetmir.co.uk/gitweb?a=commitdiff_plain;h=394f8ba3ec25575fd3296658016b2fae5bdb549c;p=tclvfs avoid make failure on some platforms --- diff --git a/ChangeLog b/ChangeLog index 9f58dcc..8b635d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-05-29 Jean-Claude Wippler + * Makefile.in: moved the definition of $(OBJEXT) up so the + definition of vfs_OBJECTS works with more make's + 2002-05-13 Vince Darley * library/webdavvfs.tcl: v. early implementation of a webdav vfs. (Note: this and the 'http' vfs need lots of work -- diff --git a/Makefile.in b/Makefile.in index a05c7e7..9af099f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -42,6 +42,9 @@ SOURCES = $(vfs_SOURCES) # #======================================================================== +# Don't change: moved here so the next definition works with more make's +OBJEXT = @OBJEXT@ + vfs_OBJECTS = generic/vfs.$(OBJEXT) OBJECTS = $(vfs_OBJECTS) @@ -131,7 +134,6 @@ LDFLAGS_OPTIMIZE = @LDFLAGS_OPTIMIZE@ MAKE_LIB = @MAKE_LIB@ MAKE_SHARED_LIB = @MAKE_SHARED_LIB@ MAKE_STATIC_LIB = @MAKE_STATIC_LIB@ -OBJEXT = @OBJEXT@ RANLIB = @RANLIB@ SHLIB_CFLAGS = @SHLIB_CFLAGS@ SHLIB_LD = @SHLIB_LD@