1
0
Fork 0
flightgear/Tools/Lib/Triangle/Makefile.am
1999-04-05 21:32:32 +00:00

24 lines
No EOL
582 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 += -DTRILIBRARY
noinst_LIBRARIES = libTriangle.a
libTriangle_a_SOURCES = triangle.c triangle.h
if HAVE_XWINDOWS
bin_PROGRAMS = showme
showme_SOURCES = showme.c
showme_LDADD = -lX11
endif