1998-04-08 23:19:34 +00:00
|
|
|
# DEFS 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:
|
|
|
|
#
|
|
|
|
# DEFS = -DTRILIBRARY -DREDUCED -DCDT_ONLY
|
|
|
|
|
1999-03-27 05:33:02 +00:00
|
|
|
DEFS += -DTRILIBRARY
|
1998-04-08 23:19:34 +00:00
|
|
|
|
1999-03-13 23:53:49 +00:00
|
|
|
noinst_LIBRARIES = libTriangle.a
|
1998-04-08 23:19:34 +00:00
|
|
|
|
1999-03-13 23:53:49 +00:00
|
|
|
libTriangle_a_SOURCES = triangle.c triangle.h
|
1998-11-04 23:01:43 +00:00
|
|
|
|
1999-03-27 05:33:02 +00:00
|
|
|
bin_PROGRAMS = showme
|
|
|
|
showme_SOURCES = showme.c
|
|
|
|
showme_LDADD = -lX11
|