File: Makefile.am

package info (click to toggle)
hexchat-otr 0.2.2-3.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 248 kB
  • sloc: ansic: 1,788; python: 76; makefile: 27; sh: 18
file content (25 lines) | stat: -rw-r--r-- 702 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
21
22
23
24
25
ACLOCAL_AMFLAGS = -I m4

hexchatlib_LTLIBRARIES = otr.la
otr_la_SOURCES = \
	src/otr_key.c \
	src/otr_ops.c \
	src/otr_util.c \
	src/hexchat_otr.c \
	src/hexchat-formats.c

otr_la_CFLAGS = $(OTR_CFLAGS) $(GLIB_CFLAGS) $(GCRYPT_CFLAGS)
otr_la_LIBADD = $(OTR_LIBS) $(GLIB_LIBS) $(GCRYPT_LIBS)
otr_la_LDFLAGS = -avoid-version -module -export-symbols-regex hexchat_.*

noinst_HEADERS = \
	src/otr.h \
	src/otr-formats.h \
	src/hexchat_otr.h

src/otr-formats.h src/hexchat-formats.c: src/formats.txt src/makeformats.py
	$(AM_V_GEN) python src/makeformats.py $< src

BUILT_SOURCES = src/otr-formats.h src/hexchat-formats.c

EXTRA_DIST = $(BUILT_SOURCES) autogen.sh LICENSE src/formats.txt src/makeformats.py