Skip to content

Commit 2b9abf1

Browse files
committed
Added build script
Modified auxillary build files as well.
1 parent 939128c commit 2b9abf1

File tree

10 files changed

+15
-10
lines changed

10 files changed

+15
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,4 @@ coverage/app.info
6464
sadplay
6565
test_main_support
6666
test_sdl_channel_bar
67+
sadplay-*.tar.gz

aminclude_static.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# aminclude_static.am generated automatically by Autoconf
3-
# from AX_AM_MACROS_STATIC on Tue Jul 6 01:00:58 CEST 2021
3+
# from AX_AM_MACROS_STATIC on Thu Nov 18 22:27:04 CET 2021
44

55

66
# Code coverage
@@ -60,7 +60,7 @@ CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT ?=$(if $(CODE_COVERAGE_BRANCH_COVERAGE),--
6060
CODE_COVERAGE_GENHTML_OPTIONS ?= $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT)
6161
CODE_COVERAGE_IGNORE_PATTERN ?=
6262

63-
GITIGNOREFILES := $(GITIGNOREFILES) $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_DIRECTORY)
63+
GITIGNOREFILES = $(GITIGNOREFILES) $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_DIRECTORY)
6464
code_coverage_v_lcov_cap = $(code_coverage_v_lcov_cap_$(V))
6565
code_coverage_v_lcov_cap_ = $(code_coverage_v_lcov_cap_$(AM_DEFAULT_VERBOSITY))
6666
code_coverage_v_lcov_cap_0 = @echo " LCOV --capture" $(CODE_COVERAGE_OUTPUT_FILE);
@@ -97,7 +97,7 @@ code-coverage-clean:
9797

9898
code-coverage-dist-clean:
9999

100-
AM_DISTCHECK_CONFIGURE_FLAGS := $(AM_DISTCHECK_CONFIGURE_FLAGS) --disable-code-coverage
100+
AM_DISTCHECK_CONFIGURE_FLAGS = $(AM_DISTCHECK_CONFIGURE_FLAGS) --disable-code-coverage
101101
else # ifneq ($(abs_builddir), $(abs_top_builddir))
102102
check-code-coverage:
103103

build-aux/compile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/usr/local/Cellar/automake/1.16.3_1/share/automake-1.16/compile
1+
/usr/share/automake-1.16/compile

build-aux/config.guess

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/usr/local/Cellar/automake/1.16.3_1/share/automake-1.16/config.guess
1+
/usr/share/automake-1.16/config.guess

build-aux/config.sub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/usr/local/Cellar/automake/1.16.3_1/share/automake-1.16/config.sub
1+
/usr/share/automake-1.16/config.sub

build-aux/depcomp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/usr/local/Cellar/automake/1.16.3_1/share/automake-1.16/depcomp
1+
/usr/share/automake-1.16/depcomp

build-aux/install-sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/usr/local/Cellar/automake/1.16.3_1/share/automake-1.16/install-sh
1+
/usr/share/automake-1.16/install-sh

build-aux/missing

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/usr/local/Cellar/automake/1.16.3_1/share/automake-1.16/missing
1+
/usr/share/automake-1.16/missing

build-aux/test-driver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/usr/local/Cellar/automake/1.16.3_1/share/automake-1.16/test-driver
1+
/usr/share/automake-1.16/test-driver

build.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
automake --add-missing && autoconf
3+
./configure
4+
make

0 commit comments

Comments
 (0)