# # Makefile for file_path_and_name # AVS_PATH=/usr/avs INC_FILE=$(AVS_PATH)/include/Makeinclude include $(INC_FILE) AVS_LIBS = $(AVS_PATH)/lib INC = $(AVS_PATH)/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) file_path_and_name: file_path_and_name.o $(CC) $(CFLAGS) -o file_path_and_name file_path_and_name.o $(CFLOWLIBS) file_path_and_name.o: file_path_and_name.c $(CC) $(CFLAGS) -c file_path_and_name.c clean: rm -f core file_path_and_name file_path_and_name.o