From 6218144d09fba6b45e80217e8ef90233725377db Mon Sep 17 00:00:00 2001 Message-Id: <6218144d09fba6b45e80217e8ef90233725377db.1713283821.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 27 Jul 1999 18:59:13 +0000 Subject: [PATCH] Fix relative order of `automake' and `autoconf'. Organization: Straylight/Edgeware From: mdw --- Makefile.am | 8 +++++--- setup | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index f26a031..3a4b72d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.4 1999/05/06 19:51:47 mdw Exp $ +## $Id: Makefile.am,v 1.5 1999/07/27 18:59:09 mdw Exp $ ## ## Makefile for mgLib ## @@ -29,6 +29,9 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ +## Revision 1.5 1999/07/27 18:59:09 mdw +## Fix relative order of `automake' and `autoconf'. +## ## Revision 1.4 1999/05/06 19:51:47 mdw ## Reformatted the LGPL notice a little bit. ## @@ -47,8 +50,7 @@ AUTOMAKE_OPTIONS = foreign lib_LIBRARIES = libmgLib.a pkginclude_HEADERS = msg.h mdwfocus.h cancel.h -INCLUDES = -I$(topsrcdir)/mLib -I$(srcdir)/../mLib - +INCLUDES = -I$(srcdir)/.. libmgLib_a_SOURCES = msg.c mdwfocus.c cancel.c ##----- That's all, folks --------------------------------------------------- diff --git a/setup b/setup index c669e77..27dde72 100755 --- a/setup +++ b/setup @@ -3,6 +3,6 @@ set -e mklinks mkaclocal -automake autoconf +automake mkdir build -- [mdw]