2000-02-09 19:51:45 +00:00
|
|
|
# CPPFLAGS is a list of definitions used to compile an object code version
|
|
|
|
# of Triangle (triangle.o) to be called by another program. The file
|
|
|
|
# "triangle.h" contains detailed information on how to call triangle.o.
|
|
|
|
#
|
|
|
|
# The -DTRILIBRARY should always be used when compiling Triangle into an
|
|
|
|
# object file.
|
|
|
|
#
|
|
|
|
# An example DEFS line is:
|
|
|
|
#
|
|
|
|
# CPPFLAGS = -DTRILIBRARY -DREDUCED -DCDT_ONLY
|
|
|
|
|
|
|
|
CPPFLAGS += -DTRILIBRARY
|
|
|
|
|
2000-05-31 01:34:44 +00:00
|
|
|
noinst_LIBRARIES = libTriangleJRS.a
|
2000-02-09 19:51:45 +00:00
|
|
|
|
2000-05-31 01:34:44 +00:00
|
|
|
libTriangleJRS_a_SOURCES = \
|
2000-05-09 12:07:24 +00:00
|
|
|
triangle.c triangle.h \
|
|
|
|
tri_support.c tri_support.h
|
2000-02-09 19:51:45 +00:00
|
|
|
|
|
|
|
if HAVE_XWINDOWS
|
|
|
|
|
|
|
|
bin_PROGRAMS = showme
|
|
|
|
showme_SOURCES = showme.c
|
|
|
|
showme_LDADD = -lX11
|
|
|
|
|
2000-05-09 12:07:24 +00:00
|
|
|
endif
|