Advertisement
trannus_aran

libtool autotools

Apr 25th, 2025
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
autoconf 1.04 KB | Source Code | 0 0
  1. dnl configure.ac
  2. #                                               -*- Autoconf -*-
  3. # Process this file with autoconf to produce a configure script.
  4.  
  5. AC_PREREQ([2.72])
  6. AC_INIT([libtaconvert], [0.0])
  7. AC_CONFIG_SRCDIR([lib/taconvert.c])
  8. AC_CONFIG_MACRO_DIRS([m4])
  9. AC_CONFIG_AUX_DIR([build-aux])
  10. AM_INIT_AUTOMAKE([1.14 foreign subdir-objects -Wall -Werror])
  11. LT_INIT
  12. AM_PROG_AR
  13.  
  14. # Checks for programs.
  15. AC_PROG_CXX
  16. AC_PROG_CC
  17. AC_PROG_INSTALL
  18.  
  19. # Checks for libraries.
  20.  
  21. # Checks for header files.
  22.  
  23. # Checks for typedefs, structures, and compiler characteristics.
  24.  
  25. # Checks for library functions.
  26.  
  27. AC_CONFIG_FILES([Makefile])
  28. AC_OUTPUT
  29.  
  30. dnl
  31. dnl Makefile.am
  32. dnl
  33. ACLOCAL_AMFLAGS = -I m4 --install
  34.  
  35. lib_LTLIBRARIES = libtaconvert.la
  36.  
  37. libtaconvert_la_SOURCES = lib/taconvert.c
  38. # Includes prefix_ as public, but keeps prefix__ private
  39. libtaconvert_la_LDFLAGS = -export-symbols-regex '^ta_convert_'
  40.  
  41. pkginclude_HEADERS = lib/taconvert.h
  42.  
  43. # Add files to dist tarball
  44. dist_doc_DATA = README
  45.  
  46. # Add files to rm with make clean
  47. CLEANFILES =
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement