diff --git a/Makefile.am b/Makefile.am index 7d06415521..374f5d5e35 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,11 @@ ACLOCAL_AMFLAGS = -I m4 +EXTRA_DIST = \ + COPYING \ + INSTALL \ + LICENSE \ + Readme.md + pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = support/libsass.pc @@ -8,7 +14,13 @@ libsass_la_SOURCES = ast.cpp base64vlq.cpp bind.cpp constants.cpp context.cpp co copy_c_str.cpp error_handling.cpp eval.cpp expand.cpp extend.cpp file.cpp \ functions.cpp inspect.cpp output_compressed.cpp output_nested.cpp \ parser.cpp prelexer.cpp sass.cpp sass_interface.cpp source_map.cpp to_c.cpp to_string.cpp \ - units.cpp + units.cpp \ + ast_def_macros.hpp ast_factory.hpp ast_fwd_decl.hpp ast.hpp backtrace.hpp base64vlq.hpp \ + bind.hpp color_names.hpp constants.hpp context.hpp contextualize.hpp copy_c_str.hpp \ + environment.hpp error_handling.hpp eval.hpp expand.hpp extend.hpp file.hpp functions.hpp \ + inspect.hpp kwd_arg_macros.hpp mapping.hpp memory_manager.hpp operation.hpp \ + output_compressed.hpp output_nested.hpp parser.hpp position.hpp prelexer.hpp source_map.hpp \ + to_c.hpp token.hpp to_string.hpp units.hpp libsass_la_LDFLAGS = -no-undefined -version-info 0:0:0 include_HEADERS = sass_interface.h sass.h @@ -22,7 +34,7 @@ if ENABLE_TESTS noinst_PROGRAMS = sass-tester -sass_tester_SOURCES = $(SASS_SASSC_PATH)/sassc.c +nodist_sass_tester_SOURCES = $(SASS_SASSC_PATH)/sassc.c sass_tester_LDADD = libsass.la sass_tester_LDFLAGS = -no-install diff --git a/configure.ac b/configure.ac index f627b0000c..afe55ea05c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.61]) -AC_INIT([libsass], [1.0], [support@moovweb.com]) +AC_INIT([libsass], [1.0.2devel], [support@moovweb.com]) AC_CONFIG_SRCDIR([ast.hpp]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([config.h])