Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- dnl configure.ac
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
- AC_PREREQ([2.72])
- AC_INIT([libtaconvert], [0.0])
- AC_CONFIG_SRCDIR([lib/taconvert.c])
- AC_CONFIG_MACRO_DIRS([m4])
- AC_CONFIG_AUX_DIR([build-aux])
- AM_INIT_AUTOMAKE([1.14 foreign subdir-objects -Wall -Werror])
- LT_INIT
- AM_PROG_AR
- # Checks for programs.
- AC_PROG_CXX
- AC_PROG_CC
- AC_PROG_INSTALL
- # Checks for libraries.
- # Checks for header files.
- # Checks for typedefs, structures, and compiler characteristics.
- # Checks for library functions.
- AC_CONFIG_FILES([Makefile])
- AC_OUTPUT
- dnl
- dnl Makefile.am
- dnl
- ACLOCAL_AMFLAGS = -I m4 --install
- lib_LTLIBRARIES = libtaconvert.la
- libtaconvert_la_SOURCES = lib/taconvert.c
- # Includes prefix_ as public, but keeps prefix__ private
- libtaconvert_la_LDFLAGS = -export-symbols-regex '^ta_convert_'
- pkginclude_HEADERS = lib/taconvert.h
- # Add files to dist tarball
- dist_doc_DATA = README
- # Add files to rm with make clean
- CLEANFILES =
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement