# # include $(ROOT)/usr/avs/include/Makeinclude AVS_LIBS = $(ROOT)/usr/avs/lib # # Opt Flags CFLAGS = -I$(ROOT)/usr/avs/include $(AOPTCFLAGS) $(LOCAL_CFLAGS) # Debug Flags: #CFLAGS = -I$(ROOT)/usr/avs/include -g $(LOCAL_CFLAGS) BASELIBS= -lutil -lgeom -lm $(LASTLIBS) FLOWLIBS=-L$(AVS_LIBS) -lflow_c $(BASELIBS) CSIMLIBS=-L$(AVS_LIBS) -lsim_c $(BASELIBS) all: ucd_profile ucd_profile: ucd_profile.o $(CC) $(CFLAGS) -o ucd_profile ucd_profile.o $(FLOWLIBS) clean: rm -f ucd_profile ucd_profile.o core