소스 검색

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

legacy
Sam Hocevar sam 15 년 전
부모
커밋
3d0a16c0d3
2개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      Makefile.am
  2. +9
    -0
      build

+ 1
- 1
Makefile.am 파일 보기

@@ -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 파일 보기

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

set -ex

./bootstrap
./configure
make clean
make


불러오는 중...
취소
저장