1
0
Fork 0
flightgear/Triangle/Makefile.am
curt 66f4bab7a0 Changes to the automake/autoconf system to reduce the number of libraries
that are unnecessarily linked into the various executables.
1998-11-04 23:01:43 +00:00

20 lines
531 B
Makefile

# 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
DEFS +=
bin_PROGRAMS = triangle # showme
triangle_SOURCES = triangle.c triangle.h
triangle_LDADD = $(base_LIBS)
# showme_SOURCES = showme.c