# This is the makefile for the msdl2vrml converter
# To compile you will need to fill in LIBPATH and INCPATH.

DEFLIBS= -lmsdl -ly -ll -lm
LIBPATH = # This is where you put the directory where libmsdl.a is
INCPATH = # This is where you put the directory where all the msdl includes are
CC= cc
CFLAGS= -Aa -D_INCLUDE_XOPEN_SOURCE 

msdl2vrml: msdl2vrml.c filter.c 
	$(CC) $(CFLAGS) -I$(INCPATH) -o msdl2vrml msdl2vrml.c -L$(LIBPATH) $(DEFLIBS)



