autotool checking
This commit is contained in:
parent
84352aca85
commit
82175ba66d
3 changed files with 32 additions and 3 deletions
29
.gitignore
vendored
29
.gitignore
vendored
|
@ -1,9 +1,32 @@
|
||||||
|
|
||||||
|
|
||||||
|
# cmake
|
||||||
CMakeCache.txt
|
CMakeCache.txt
|
||||||
CMakeFiles
|
CMakeFiles
|
||||||
Makefile
|
|
||||||
CTestTestfile.cmake
|
CTestTestfile.cmake
|
||||||
|
Testing
|
||||||
cmake_install.cmake
|
cmake_install.cmake
|
||||||
install_manifest.txt
|
install_manifest.txt
|
||||||
*.a
|
|
||||||
Testing
|
# tags
|
||||||
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
1
Makefile.am
Normal file
|
@ -0,0 +1 @@
|
||||||
|
SUBDIRS=src tests
|
5
src/Makefile.am
Normal file
5
src/Makefile.am
Normal 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)
|
Loading…
Reference in a new issue