File: Makefile.am

package info (click to toggle)
teg 0.11.2%2Bdebian-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,340 kB
  • sloc: ansic: 17,600; sh: 8,546; python: 1,442; xml: 1,310; makefile: 357
file content (50 lines) | stat: -rw-r--r-- 1,167 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
## Process this file with automake to produce Makefile.in


if CLIENT
PIXSUBDIRS = teg_pix themes
GUI_SUBDIR = gui-gnome
else
PIXSUBDIRS =
GUI_SUBDIR =
endif


INCLUDES = -I$(top_srcdir)/common -I../intl	\
	@CLIENT_CFLAGS@					\
	@XML_CFLAGS@					\
	@GGZMOD_INCLUDES@				\
	-DBINDIR=\"$(bindir)\"				\
	-DTHEMEDIR=\"$(datadir)/pixmaps/teg_pix/themes/\"

SUBDIRS= $(PIXSUBDIRS) $(GUI_SUBDIR)


noinst_LIBRARIES = libclient.a
libclient_a_SOURCES = \
	client.h		\
	globals.c globals.h	\
	player.c player.h	\
	misc.c misc.h		\
	inputfd.c inputfd.h	\
	outputfd.c outputfd.h	\
	countries.c countries.h	\
	helper.c helper.h	\
	fichas.c fichas.h	\
	attack.c attack.h	\
	reagrupe.c reagrupe.h	\
	ejer2.c ejer2.h		\
	canje.c canje.h		\
	themes.c themes.h	\
	metaserver.c metaserver.h	\
	ggz_client.c ggz_client.h

if CLIENT
bin_PROGRAMS = tegclient

tegclient_SOURCES = \
	main.c main.h

tegclient_DEPENDENCIES = @gui_sources@/libguiclient.a libclient.a  ../common/libtegcommon.a $(INTLDEPS)
tegclient_LDADD        = @gui_sources@/libguiclient.a @TEG_LIBGNOME_LIBS@ @GGZMOD_LDFLAGS@ @LIB_GGZMOD@ libclient.a  ../common/libtegcommon.a $(INTLLIBS) @CLIENT_LIBS@ @XML_LIBS@
endif