File: Makefile.am

package info (click to toggle)
teg 0.11.2%2Bdebian-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 11,484 kB
  • ctags: 7,108
  • sloc: ansic: 16,775; sh: 8,559; python: 1,442; xml: 490; makefile: 385
file content (33 lines) | stat: -rw-r--r-- 854 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
## Process this file with automake to produce Makefile.in

bin_PROGRAMS = tegserver
INCLUDES = -I$(top_srcdir)/common -I../intl $(GGZINC)	\
	@SERVER_CFLAGS@					\
	@XML_CFLAGS@					\
	@GGZDMOD_INCLUDES@				\
	-DBINDIR=\"$(bindir)\"


## Above, note -I../intl instead of -I$(top_srdir/intl) is deliberate.

tegserver_SOURCES = \
	main.c main.h		\
	globals.h		\
	server.h		\
	player.c player.h	\
	sernet.c sernet.h	\
	countries.c countries.h	\
	play.c play.h		\
	turno.c turno.h		\
	console.c console.h	\
	helper.c helper.h	\
	missions.c missions.h \
	ggz_server.c ggz_server.h	\
	options.c options.h	\
	xmlscores.c xmlscores.h	\
	metaserver.c metaserver.h	\
	fow.c fow.h


tegserver_DEPENDENCIES = ../common/libtegcommon.a $(INTLDEPS)
tegserver_LDADD        = ../common/libtegcommon.a @GGZDMOD_LDFLAGS@ @LIB_GGZDMOD@ $(INTLLIBS) $(SERVER_LIBS) @XML_LIBS@