File: Makefile.am

package info (click to toggle)
teg 0.9.2-2.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,232 kB
  • ctags: 2,372
  • sloc: ansic: 18,999; sh: 9,273; makefile: 589; yacc: 318; xml: 160
file content (37 lines) | stat: -rw-r--r-- 899 bytes parent folder | download
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
## Process this file with automake to produce Makefile.in

if GGZSUPPORT
GGZLIB = ../ggz/easysock/libeasysock.a ../ggz/server/libggzd.a
GGZINC = -I$(top_srcdir)/ggz/server -I$(top_srcdir)/ggz/easysock
else
GGZLIB =
GGZINC =
endif

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


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

tegserver_SOURCES = \
	main.c main.h		\
	globals.h		\
	server.h		\
	jugador.c jugador.h	\
	sernet.c sernet.h	\
	paises.c paises.h	\
	play.c play.h		\
	turno.c turno.h		\
	console.c console.h	\
	aux.c aux.h		\
	objetivos.c objetivos.h \
	tegggz.c tegggz.h	\
	options.c options.h	\
	xmlscores.c xmlscores.h


tegserver_DEPENDENCIES = ../common/libtegcommon.a $(GGZLIB) $(INTLDEPS)
tegserver_LDADD        = ../common/libtegcommon.a $(GGZLIB) $(INTLLIBS) $(SERVER_LIBS)