# This module was obtained from the International AVS Center
# For more information, please send email to avs@iavsc.org

# Makefile for     : read_DICOM
# Module Author    : Zachary DelProposto
# Module Version # : 1.000
# Makefile Date    : 16/05/02


AVS_PATH=/usr/avs

AVS_LIBS=$(AVS_PATH)/lib
BASELIBS=-lgeom -lutil -lm
FLOWLIBS=-L$(AVS_LIBS) -lflow_c $(BASELIBS)
AVS_INC=-I. -I$(AVS_PATH)/include
CFLAGS=$(AVS_INC)

AVS_EXE = $(AVS_PATH)/bin/avs

OBJECTS=read_DICOM.o
TARGET=read_DICOM

$(TARGET):	$(OBJECTS)
	$(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) $(FLOWLIBS)

clean:
	rm *.o
