File: Makefile.am

package info (click to toggle)
libhangul 0.1.0%2Bgit20191003-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 11,356 kB
  • sloc: ansic: 8,391; python: 631; xml: 402; makefile: 164; ruby: 24; sh: 19
file content (16 lines) | stat: -rw-r--r-- 436 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

noinst_PROGRAMS = hangul hanja

hangul_CFLAGS =
hangul_SOURCES = hangul.c
hangul_LDADD = ../hangul/libhangul.la $(LTLIBINTL) $(LTLIBICONV)

hanja_CFLAGS =
hanja_SOURCES = hanja.c
hanja_LDADD = ../hangul/libhangul.la $(LTLIBINTL)

TESTS = test
check_PROGRAMS = test
test_SOURCES = test.c ../hangul/hangul.h
test_CFLAGS = $(CHECK_CFLAGS) -DTEST_SOURCE_DIR=\"$(abs_srcdir)\"
test_LDADD = $(CHECK_LIBS) ../hangul/libhangul.la $(LTLIBINTL)