Browse Source

Add a simple "build" script for people unfamiliar with bootstrap etc.

legacy
Sam Hocevar sam 14 years ago
parent
commit
3d0a16c0d3
2 changed files with 10 additions and 1 deletions
  1. +1
    -1
      Makefile.am
  2. +9
    -0
      build

+ 1
- 1
Makefile.am View File

@@ -2,6 +2,6 @@
SUBDIRS = src tools art gfx
DIST_SUBDIRS = $(SUBDIRS) maps

EXTRA_DIST = bootstrap
EXTRA_DIST = bootstrap build
AUTOMAKE_OPTIONS = dist-bzip2


+ 9
- 0
build View File

@@ -0,0 +1,9 @@
#!/bin/sh

set -ex

./bootstrap
./configure
make clean
make


Loading…
Cancel
Save