# callmodule_make.in is modified during dxsamples configuration
#  to create callmodule_make with values from the dx build
BASE = /usr/local/dx

# this has a LOT of the architecture specifics, 
#   copy (and adjust include path appropriately) if you must modify
include /usr/local/dx/lib_/arch.mak

CFLAGS = -O -D -I$(BASE)/include \
	$(DXCFLAGS)

LIBS     = -L$(BASE)/lib_ -lDXcallm \
		-lGL \
		$(DXEXECLINKLIBS)


CC = $(DXCC)

Simple:			Simple.o
			$(CC) Simple.o $(LIBS) -o Simple 
ThunderStreamlines:	ThunderStreamlines.o
			$(CC) ThunderStreamlines.o $(LIBS) -o ThunderStreamlines
xapp_supervise:		xapp_supervise.o
			$(CC) xapp_supervise.o $(LIBS) -o xapp_supervise 
renderimage:		renderimage.o
			$(CC) renderimage.o $(LIBS) -o renderimage 
