#
# To compile dxftop3d with cc, which is very useful for typechecking,
# use the command "make dxftop3d" or "make".
#

#
# To produce a version which uses lines instead of polygons to draw
# meshes, add -DLINE_MESHES to the CFLAGS line below.  For debugging,
# replace -O with -g .
#
CFLAGS = -O

#
# To compile with the Gnu C compiler, which is very useful for type
# checking, uncomment the line below.
#
#CC = gcc

dxftop3d:dxftop3d.c
	$(CC) $(CFLAGS) -o  dxftop3d dxftop3d.c -lm

