#
# Makefile for integer_list
#

INC_FILE=$(ROOT)/usr/avs/include/Makeinclude
include $(INC_FILE)

AVS_LIBS = $(ROOT)/usr/avs/lib
INC = $(ROOT)/usr/include
BASELIBS=-lgeom -lutil -lm $(LASTLIBS)
CFLAGS = -I$(INC) $(AOPTCFLAGS) $(LOCAL_CFLAGS) $(G)
CFLOWLIBS=-L$(AVS_LIBS) -lflow_c $(BASELIBS)
CSIMLIBS=-L$(AVS_LIBS) -lsim_c $(BASELIBS)

integer_list:	integer_list.o
	$(CC) $(CFLAGS) -o integer_list integer_list.o $(CFLOWLIBS)

integer_list.o:	integer_list.c
	$(CC) $(CFLAGS)  -c integer_list.c

clean:
	rm -f core  integer_list integer_list.o