summaryrefslogtreecommitdiff
path: root/src/hgs/Makefile.am
blob: 27fe20037636065ddae14418e0b95e42c77c5be3 (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
29
30
31
32
33
34
35
##
# Global definitions
NULL =
INCLUDES =							\
	$(GLIB_CFLAGS)						\
	-I$(top_srcdir)						\
	$(NULL)
LIBS =								\
	@LDFLAGS@						\
	$(GLIB_LIBS)						\
	$(NULL)
DEPS =								\
	$(top_builddir)/hieroglyph/libhieroglyph.la		\
	$(NULL)
##
# Local definitions

##
# Local Rules

##
# Target platform
bin_PROGRAMS =							\
	hgs							\
	$(NULL)
#
hgs_SOURCES =							\
	hgs.c							\
	$(NULL)
hgs_CFLAGS =							\
	-DG_LOG_DOMAIN="\"hgs\""				\
	$(NULL)
hgs_LDADD =							\
	$(top_builddir)/hieroglyph/libhieroglyph.la		\
	$(NULL)