File: Makefile.am

package info (click to toggle)
libuninum 2.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,204 kB
  • sloc: ansic: 9,968; sh: 8,721; tcl: 553; makefile: 27
file content (20 lines) | stat: -rw-r--r-- 733 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
bin_PROGRAMS = numconv
bin_SCRIPTS = NumberConverter.tcl
numconv_SOURCES = numconv.c uniio.c wcgetline.c ExplicateBadUTF8.c binfmt.c
dist_man_MANS = numconv.1
noinst_HEADERS =   exitcode.h input.h utf8error.h utf8error.h
lib_LTLIBRARIES     = libuninum.la
libuninum_la_SOURCES = uninum.c
library_includedir=$(includedir)/uninum
library_include_HEADERS =  nsdefs.h unicode.h uninum.h
numconv_LDADD = libuninum.la
LIBS+=-lgmp
LIBS+=-lm
libuninum_la_LDFLAGS = -version-info 7:1:2
EXTRA_DIST = Examples GPL TestFiles uninum.i tcl_uninum_wrap.c README_TCL TclMakefile CREDITS NumberConverter.tcl README_NUMBERCONVERTER
AUTOMAKE_OPTIONS = dist-zip dist-bzip2
if ALLOCAOK
AM_CFLAGS = -DALLOCAOK -std=gnu99
else
AM_CFLAGS = -std=gnu99
endif