Skip to content

Commit

Permalink
Fix 'make dist' to make a proper github release!
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-pate committed Jan 2, 2016
1 parent 6cb29a1 commit 9d4acb0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ tests/check_jstruct
tests/*.log
tests/check_jstruct.trs
.git
libjstruct-la-*.tar.gz
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([libjstruct.la], [0.1.1], [[email protected]])
AC_INIT([libjstruct.la], [0.0.5], [[email protected]])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])

Expand Down
7 changes: 1 addition & 6 deletions jstruct/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
## Process this file with automake to produce Makefile.in

lib_LTLIBRARIES = libjstruct.la
libjstruct_la_SOURCES = jstruct.c jstruct.h \
jstruct_private.h jstruct_private.c \
error.h error.init.h error.c \
result.h result.init.h \
export.c export.h export_private.h \
import.c import.h import_private.h \
libjstruct_la_SOURCES = jstruct.c jstruct_private.c error.c export.c import.c
include_HEADERS = jstruct.h export.h import.h error.h result.h
8 changes: 1 addition & 7 deletions tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/

TESTS = check_jstruct
check_PROGRAMS = check_jstruct
check_jstruct_SOURCES = check_jstruct.c \
check_export.c check_export.h \
check_import.c check_import.h \
$(top_builddir)/jstruct/jstruct.h \
$(top_builddir)/jstruct/errors.h \
$(top_builddir)/jstruct/export.h \
$(top_builddir)/jstruct/import.h \
check_jstruct_SOURCES = check_jstruct.c check_export.c check_import.c \
data/basic.h data/basic.init.h
check_jstruct_CFLAGS = @CHECK_CFLAGS@
check_jstruct_LDADD = $(top_builddir)/jstruct/libjstruct.la @CHECK_LIBS@

0 comments on commit 9d4acb0

Please sign in to comment.