2014-03-22 20:35:56 +01:00
|
|
|
# suffixes.c must be created before psl.c is compiled
|
|
|
|
BUILT_SOURCES = suffixes.c
|
|
|
|
|
|
|
|
# suffixes.c is a built source that must be cleaned
|
|
|
|
CLEANFILES = suffixes.c
|
2014-03-20 22:43:04 +01:00
|
|
|
|
2014-03-24 17:29:56 +01:00
|
|
|
lib_LTLIBRARIES = libpsl-@LIBPSL_API_VERSION@.la
|
2014-03-22 20:35:56 +01:00
|
|
|
|
|
|
|
libpsl_@LIBPSL_API_VERSION@_la_SOURCES = psl.c
|
|
|
|
libpsl_@LIBPSL_API_VERSION@_la_CPPFLAGS = -I$(top_srcdir)/include
|
2014-03-20 22:43:04 +01:00
|
|
|
# include ABI version information
|
|
|
|
libpsl_@LIBPSL_API_VERSION@_la_LDFLAGS = -version-info $(LIBPSL_SO_VERSION)
|
|
|
|
|
2014-03-22 20:35:56 +01:00
|
|
|
noinst_PROGRAMS = psl2c
|
|
|
|
psl2c_SOURCES = psl2c.c
|
2014-03-22 22:55:34 +01:00
|
|
|
psl2c_CPPFLAGS = -I$(top_srcdir)/include -D _GNU_SOURCE
|
2014-03-24 15:54:43 +01:00
|
|
|
#psl2c_LDADD = -lidn2
|
2014-03-22 20:35:56 +01:00
|
|
|
|
|
|
|
# Build rule for suffix.c
|
2014-04-13 16:35:28 +02:00
|
|
|
# PSL_FILE can be set by ./configure --with-psl-file=[PATH]
|
|
|
|
suffixes.c: $(PSL_FILE) psl2c$(EXEEXT)
|
|
|
|
./psl2c$(EXEEXT) "$(PSL_FILE)" suffixes.c
|