Skip to content

Commit

Permalink
Tweaks to some of the build scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahlstromcj committed Nov 20, 2016
1 parent b731676 commit cd8f1a3
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
9 changes: 9 additions & 0 deletions autogen.sh
@@ -0,0 +1,9 @@
#!/bin/sh
#
# Provides a basic autogen.sh, which uses our bootstrap script to do
# all the work. Run ./bootstrap --help if you want to customize the
# build.

./bootstrap --enable-release

# vim: ts=4 sw=4 et ft=sh
9 changes: 6 additions & 3 deletions bootstrap
Expand Up @@ -8,7 +8,7 @@
# \library Sequencer64
# \author Chris Ahlstrom
# \date 2015-09-10
# \update 2016-11-09
# \update 2016-11-19
# \version $Revision$
# \license $XPC_SUITE_GPL_LICENSE$
#
Expand All @@ -22,6 +22,9 @@
# descendant modifications available to the community for all time.
# runs the configure script by default.
#
# This file provides the functionality most expect to find in an
# autogen.sh script.
#
#------------------------------------------------------------------------------

#******************************************************************************
Expand All @@ -33,9 +36,9 @@ export LANG
CYGWIN=binmode
export CYGWIN

export SEQUENCER64_SCRIPT_EDIT_DATE="2016-11-09"
export SEQUENCER64_SCRIPT_EDIT_DATE="2016-11-19"
export SEQUENCER64_LIBRARY_API_VERSION="0.9"
export SEQUENCER64_LIBRARY_VERSION="$SEQUENCER64_LIBRARY_API_VERSION.9.19"
export SEQUENCER64_LIBRARY_VERSION="$SEQUENCER64_LIBRARY_API_VERSION.9.21"

#******************************************************************************
# Version info
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -645,7 +645,7 @@ AC_CONFIG_FILES([
resources/pixmaps/Makefile
Sequencer64/Makefile
man/Makefile
])
])

AC_OUTPUT

Expand Down
6 changes: 4 additions & 2 deletions libseq64/src/Makefile.am
Expand Up @@ -6,7 +6,7 @@
# \library libseq64 library
# \author Chris Ahlstrom
# \date 2015-09-11
# \update 2016-11-09
# \update 2016-11-19
# \version $Revision$
# \license $XPC_SUITE_GPL_LICENSE$
#
Expand Down Expand Up @@ -164,7 +164,9 @@ libseq64_la_SOURCES = \
userfile.cpp

libseq64_la_LDFLAGS = -version-info $(version)
libseq64_la_LIBADD = $(GTKMM_LIBS) $(ALSA_LIBS) $(JACK_LIBS) $(LASH_LIBS)
libseq64_la_LIBADD = $(ALSA_LIBS) $(JACK_LIBS) $(LASH_LIBS)

# libseq64_la_LIBADD = $(GTKMM_LIBS) ...

#******************************************************************************
# uninstall-hook
Expand Down
2 changes: 1 addition & 1 deletion seq_gtkmm2/Makefile.am
Expand Up @@ -68,7 +68,7 @@ DIST_SUBDIRS = $(SUBDIRS)

all-local:
@echo "Top source-directory 'top_srcdir' is $(top_srcdir)"
@echo "* * * * * All libseq_gktmm2 build items completed * * * * *"
@echo "* * * * * All libseq_gtkmm2 build items completed * * * * *"

#******************************************************************************
# Directories
Expand Down

0 comments on commit cd8f1a3

Please sign in to comment.