summaryrefslogtreecommitdiff
path: root/xdt-csource/Makefile.am
blob: 31e388de64b48d7acc048b97b65a185bfbed82b9 (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
# Copyright (c) 2002-2015
#         The Xfce development team. All rights reserved.
#

AM_CPPFLAGS = 								\
	-I$(top_srcdir)							\
	-DG_LOG_DOMAIN=\"xdt-csource\"

bin_PROGRAMS =								\
	xdt-csource

xdt_csource_SOURCES =							\
	main.c

xdt_csource_CFLAGS =							\
	$(GLIB_CFLAGS)

xdt_csource_LDFLAGS =							\
	-no-undefined

xdt_csource_LDADD =							\
	$(GLIB_LIBS)

# require to make dist in tests/
dist-hook: all

# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: