aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1compiler/Makefile.am
blob: 6b2babdf57feb6eeb2f320a769a42e828714adf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
AM_CPPFLAGS =	\
	-I${top_srcdir}/libasn1parser	\
	-I${top_srcdir}/libasn1fix

noinst_LTLIBRARIES = libasn1compiler.la

libasn1compiler_la_LDFLAGS = -all-static
libasn1compiler_la_SOURCES =			\
	asn1compiler.c asn1compiler.h		\
	asn1c_misc.c asn1c_misc.h		\
	asn1c_out.c asn1c_out.h			\
	asn1c_lang.c asn1c_lang.h		\
	asn1c_save.c asn1c_save.h		\
	asn1c_C.c asn1c_C.h			\
	asn1c_internal.h

libasn1compiler_la_LIBADD =				\
	${top_builddir}/libasn1parser/libasn1parser.la	\
	${top_builddir}/libasn1fix/libasn1fix.la

check_PROGRAMS = check_compiler

TESTS = ${check_PROGRAMS}

LDADD = ${noinst_LTLIBRARIES} ${libasn1compiler_la_LIBADD}
DEPENDENCIES = ${LDADD}