1
0
Fork 0
terragear/src/Lib/TriangleJRS/Makefile.am

32 lines
748 B
Text
Raw Normal View History

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
AM_CFLAGS = -DTRILIBRARY
2000-02-09 19:51:45 +00:00
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 = \
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
endif
noinst_PROGRAMS = test_triangle
test_triangle_SOURCES = test_triangle.c
test_triangle_LDADD = libTriangleJRS.a