From 72eda236daab07f08a64b207fd879577d89c0f53 Mon Sep 17 00:00:00 2001 From: hniksic Date: Wed, 22 Jun 2005 18:03:16 -0700 Subject: [PATCH] [svn] Replaced the non-standard Makefile.svn with autogen.sh. --- ChangeLog | 7 +++++++ Makefile.svn => autogen.sh | 35 ++++++++++------------------------- 2 files changed, 17 insertions(+), 25 deletions(-) rename Makefile.svn => autogen.sh (65%) mode change 100644 => 100755 diff --git a/ChangeLog b/ChangeLog index cadb15aa..01c8978a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-06-22 Hrvoje Niksic + + * autogen.sh: New file. + + * Makefile.svn: Deleted, replaced with the even simpler (and more + standard) `autogen.sh' script. + 2005-06-22 Hrvoje Niksic * configure.in: Don't check for signal.h. Remove the diff --git a/Makefile.svn b/autogen.sh old mode 100644 new mode 100755 similarity index 65% rename from Makefile.svn rename to autogen.sh index 665ab142..3216c900 --- a/Makefile.svn +++ b/autogen.sh @@ -1,5 +1,8 @@ -# Makefile for preparing the sources after Subversion checkout. -# Copyright (C) 2000 Karl Eichwalder. +#!/bin/sh -x + +# The (trivial) script for preparing the sources following the +# checkout from version control. +# Copyright (C) 2005 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,28 +28,10 @@ # file, but you are not obligated to do so. If you do not wish to do # so, delete this exception statement from your version. -# -# Usage: -# -# make -f Makefile.svn -# - -SHELL = /bin/sh - -prep: - autoheader - autoconf - -# The following two targets are pretty lame because we don't know that -# the user wants to configure in `.', just like we don't know whether -# the `make' program is called `make'. I'm keeping them for the sake -# of the users who expect to find them. I don't want to make this -# file complicated by implementing smarter detections -- the user who -# needs different behavior should simply run `make -f Makefile.svn' -# and proceed as he would have normally. +autoheader +autoconf -configure: prep - ./configure +# We intentionally don't invoke configure and make because we don't +# know where the user wants to run the configuration, nor with which +# arguments. That is entirely up to the user. -make: configure - make -- 2.39.2