Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
ACLOCAL_AMFLAGS = -I m4

EXTRA_DIST = \
COPYING \
INSTALL \
LICENSE \
Readme.md

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = support/libsass.pc

Expand All @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.61])
AC_INIT([libsass], [1.0], [[email protected]])
AC_INIT([libsass], [1.0.2devel], [[email protected]])
AC_CONFIG_SRCDIR([ast.hpp])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
Expand Down