xref: /openbmc/ipmitool/bootstrap (revision c18ec02f)
1*c18ec02fSPetter Reinholdtsen#!/bin/sh -x
2*c18ec02fSPetter Reinholdtsen#
3*c18ec02fSPetter Reinholdtsen# Copyright (c) 2003 Sun Microsystems, Inc.  All Rights Reserved.
4*c18ec02fSPetter Reinholdtsen#
5*c18ec02fSPetter Reinholdtsen# Redistribution and use in source and binary forms, with or without
6*c18ec02fSPetter Reinholdtsen# modification, are permitted provided that the following conditions
7*c18ec02fSPetter Reinholdtsen# are met:
8*c18ec02fSPetter Reinholdtsen#
9*c18ec02fSPetter Reinholdtsen# Redistribution of source code must retain the above copyright
10*c18ec02fSPetter Reinholdtsen# notice, this list of conditions and the following disclaimer.
11*c18ec02fSPetter Reinholdtsen#
12*c18ec02fSPetter Reinholdtsen# Redistribution in binary form must reproduce the above copyright
13*c18ec02fSPetter Reinholdtsen# notice, this list of conditions and the following disclaimer in the
14*c18ec02fSPetter Reinholdtsen# documentation and/or other materials provided with the distribution.
15*c18ec02fSPetter Reinholdtsen#
16*c18ec02fSPetter Reinholdtsen# Neither the name of Sun Microsystems, Inc. or the names of
17*c18ec02fSPetter Reinholdtsen# contributors may be used to endorse or promote products derived
18*c18ec02fSPetter Reinholdtsen# from this software without specific prior written permission.
19*c18ec02fSPetter Reinholdtsen#
20*c18ec02fSPetter Reinholdtsen# This software is provided "AS IS," without a warranty of any kind.
21*c18ec02fSPetter Reinholdtsen# ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
22*c18ec02fSPetter Reinholdtsen# INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
23*c18ec02fSPetter Reinholdtsen# PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.
24*c18ec02fSPetter Reinholdtsen# SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE
25*c18ec02fSPetter Reinholdtsen# FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
26*c18ec02fSPetter Reinholdtsen# OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.  IN NO EVENT WILL
27*c18ec02fSPetter Reinholdtsen# SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA,
28*c18ec02fSPetter Reinholdtsen# OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
29*c18ec02fSPetter Reinholdtsen# PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
30*c18ec02fSPetter Reinholdtsen# LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
31*c18ec02fSPetter Reinholdtsen# EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
32*c18ec02fSPetter Reinholdtsen
33*c18ec02fSPetter Reinholdtsenaclocal
34*c18ec02fSPetter Reinholdtsenlibtoolize --automake --copy
35*c18ec02fSPetter Reinholdtsen
36*c18ec02fSPetter Reinholdtsenautoheader
37*c18ec02fSPetter Reinholdtsenautomake --foreign --add-missing --copy
38*c18ec02fSPetter Reinholdtsen
39*c18ec02fSPetter Reinholdtsenaclocal
40*c18ec02fSPetter Reinholdtsenautoconf
41*c18ec02fSPetter Reinholdtsenautomake --foreign
42*c18ec02fSPetter Reinholdtsen
43