Skip to content

Commit

Permalink
Some autotools config
Browse files Browse the repository at this point in the history
  • Loading branch information
jbussdieker committed Dec 19, 2013
1 parent 149bd6d commit ccc86f7
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .gitignore
Expand Up @@ -5,3 +5,26 @@ bin/*

a.out
.DS_Store

Makefile.in
.deps/
/aclocal.m4
/autom4te.cache/
/config.guess
/config.h
/config.h.in
/config.log
/config.status
/config.sub
/configure
/depcomp
/install-sh
/libtool
/ltmain.sh
/m4/libtool.m4
/m4/ltoptions.m4
/m4/ltsugar.m4
/m4/ltversion.m4
/m4/lt~obsolete.m4
/missing
/stamp-h1
6 changes: 6 additions & 0 deletions Makefile.am
@@ -0,0 +1,6 @@
ACLOCAL_AMFLAGS = -I m4

bin_PROGRAMS = sassc
sassc_SOURCES = sassc.c
sassc_CPPFLAGS = $(SASS_CFLAGS)
sassc_LDFLAGS= $(SASS_LIBS)
12 changes: 12 additions & 0 deletions configure.ac
@@ -0,0 +1,12 @@
AC_PREREQ([2.64])
AC_INIT([sassc], [1.0], [support@moovweb.com])
AC_CONFIG_SRCDIR([sassc.c])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([1.11 foreign parallel-tests])
PKG_CHECK_MODULES(SASS, libsass)
LT_INIT
AC_PROG_CXX
AC_CHECK_HEADERS([sass_interface.h])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT

0 comments on commit ccc86f7

Please sign in to comment.