# # flight_path module make # INC_FILE=$(ROOT)/usr/avs/include/Makeinclude include $(INC_FILE) AVS_LIBS = $(ROOT)/usr/avs/lib BASELIBS=-lgeom -lutil -lm $(LASTLIBS) FLOWLIBS=-L$(AVS_LIBS) -lflow_c $(BASELIBS) AVS_INC = -I$(ROOT)/usr/avs/include CFLAGS=$(ACFLAGS) -Dsep_exe $(AVS_INC) all: flight_path # debug flags, Opt causes failure on Vistra #CFLAGS= -g -Dsep_exe $(AVS_INC) flight_path: flight_path.o $(CC) $(CFLAGS) -o flight_path flight_path.o $(FLOWLIBS) clean: rm -f core flight_path flight_path.o