Skip to content
Open
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
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,20 @@
*.a
*~
*#
*.swp

lib/autom4te.cache/*
lib/Makefile
lib/Makefile.in
lib/config.h.in
lib/libxdifile.pc
lib/build-aux
lib/build
lib/m4
lib/aclocal.m4
lib/config.log
lib/config.status
lib/configure
lib/libxdifile.so
lib/stamp-h1
lib/xdi_reader
Expand Down
38 changes: 38 additions & 0 deletions lib/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# location of libtool macros
ACLOCAL_AMFLAGS = -I m4

# installation location of pkg-config file
pkgconfigdir=$(libdir)/pkgconfig
# variable containing file that will be copied into pkgconfigdir
pkgconfig_DATA=libxdifile.pc

# installation location of headers
xdifileincludedir=${includedir}/xdifile
# variable containing file that will be copied into xdifileincludedir
xdifileinclude_HEADERS = xdifile.h

# global preprocessor flags
AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir}

# programs that will be installed in $(bin)
bin_PROGRAMS = xdi_reader
# source files necessary to compile the xdi_reader program
xdi_reader_SOURCES = xdi_reader.c
# xdi_reader will be linked to our shared library libxdifile
xdi_reader_LDADD = libxdifile.la

# list of libraries (built with libtool) that will end up in $(lib)
# the .la extension will be changed depending on what is in use on the target platform (.so, .dll, .dylib)
lib_LTLIBRARIES = libxdifile.la
# the source code our library will be built from
libxdifile_la_SOURCES = \
strutil.h \
strutil.c \
xdifile.h \
xdifile.c \
slre.h \
slre.c
# the flags that will be passed onto the linker when generating the library
# EXTRA_LDFLAGS is defined in configure.ac and will be empty, except on Windows
# the version-info will be important when backwards compatibility needs to be broken due the removed or changed interfaces
libxdifile_la_LDFLAGS = $(EXTRA_LDFLAGS) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
File renamed without changes.
7 changes: 0 additions & 7 deletions lib/build_mac_osx.sh

This file was deleted.

18 changes: 0 additions & 18 deletions lib/build_win32.bat

This file was deleted.

26 changes: 0 additions & 26 deletions lib/config.h

This file was deleted.

25 changes: 0 additions & 25 deletions lib/config.h.in

This file was deleted.

Loading