File: Makefile.am

package info (click to toggle)
gnugo 2.4-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,816 kB
  • ctags: 1,828
  • sloc: ansic: 22,091; tcl: 401; sh: 376; makefile: 202
file content (48 lines) | stat: -rw-r--r-- 1,140 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
38
39
40
41
42
43
44
45
46
47
48
# --------------------------------------------------------------------
## Process this file with automake to produce Makefile.in -*-Makefile-*-
# --------------------------------------------------------------------
AUTOMAKE_OPTIONS = gnits 1.2h

SUBDIRS = 

bin_PROGRAMS =

EXTRA_DIST =

noinst_HEADERS = interface.h gmp.h 

BUILT_SOURCES = 

# Remove these files here... they are created locally
DISTCLEANFILES = $(BUILT_SOURCES) .deps/* *~

INCLUDES = -I.. -I$(srcdir) \
	-I$(top_srcdir)/sgf \
	-I$(top_srcdir)/src


# preconfigured settings for various configurations
noinst_LIBRARIES = libinterface.a

# -lcurses or similar if that is being used.
LIBS=@gp_tcap@

libinterface_a_SOURCES = \
	interface.c \
	play_ascii.c \
	play_gmp.c \
	play_solo.c \
	play_test.c \
	gmp.c

#libutils_a_LIBADD = @LIBOBJS@ @ALLOCA@
libinterface_a_DEPENDENCIES = $(interface_a_LIBADD)


GCCOPTS=-Wall -W -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations

AIXOPTS=-O -qmaxmem=16384 -qro -qroconst -qinfo

@GCC_ONLY@ CFLAGS+=$(GCCOPTS)
# OPTIONS=$(AIXOPTS)