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)
|