Skip to content

Commit

Permalink
Added automake entries for the script, did a version bump to so I can…
Browse files Browse the repository at this point in the history
… make an release with the script.
  • Loading branch information
orrche committed Sep 18, 2010
1 parent 0a21c7e commit 3fe5ff2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion rarfs/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

SUBDIRS=. src doc
SUBDIRS=. src doc scripts

2 changes: 1 addition & 1 deletion rarfs/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
SUBDIRS = . src doc
SUBDIRS = . src doc scripts
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive

Expand Down
5 changes: 3 additions & 2 deletions rarfs/configure
Original file line number Diff line number Diff line change
Expand Up @@ -2666,7 +2666,7 @@ fi

# Define the identity of the package.
PACKAGE=rarfs
VERSION=0.0.8
VERSION=0.0.9


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -13979,7 +13979,7 @@ if test "x${prefix}" = "xNONE"; then
fi


ac_config_files="$ac_config_files Makefile src/Makefile doc/Makefile"
ac_config_files="$ac_config_files Makefile src/Makefile doc/Makefile scripts/Makefile"

cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
Expand Down Expand Up @@ -15068,6 +15068,7 @@ do
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
"src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
"doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
"scripts/Makefile") CONFIG_FILES="$CONFIG_FILES scripts/Makefile" ;;
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
esac
Expand Down
5 changes: 3 additions & 2 deletions rarfs/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


AC_INIT(src/main.cc)
AM_INIT_AUTOMAKE(rarfs,0.0.8)
AM_INIT_AUTOMAKE(rarfs,0.0.9)
AM_CONFIG_HEADER(config.h)
AC_PROG_CC
AC_PROG_CXX
Expand All @@ -34,5 +34,6 @@ fi

AC_OUTPUT(Makefile \
src/Makefile \
doc/Makefile
doc/Makefile \
scripts/Makefile
)

0 comments on commit 3fe5ff2

Please sign in to comment.