autotool checking

This commit is contained in:
c9s 2014-05-17 06:37:30 +08:00
parent 84352aca85
commit 82175ba66d
3 changed files with 32 additions and 3 deletions

29
.gitignore vendored
View file

@ -1,9 +1,32 @@
# cmake
CMakeCache.txt
CMakeFiles
Makefile
CTestTestfile.cmake
Testing
cmake_install.cmake
install_manifest.txt
*.a
Testing
# tags
tags
# autotools
Makefile
Makefile.in
*.a
*.am
*.lo
*.la
*.dylib
*.o
/aclocal.m4
/autom4te.cache
/compile
/configure
/depcomp
/install-sh
/missing
/stamp-h1

1
Makefile.am Normal file
View file

@ -0,0 +1 @@
SUBDIRS=src tests

5
src/Makefile.am Normal file
View file

@ -0,0 +1,5 @@
lib_LTLIBRARIES=libr3.la
libr3_la_SOURCES=node.c edge.c list.c str.c token.c
libr3_la_LIBADD=$(DEPS_LIBS)
AM_CFLAGS=$(DEPS_CFLAGS) -I$(top_builddir)/include
# AM_CFLAGS=$(DEPS_CFLAGS)