📄 makefile.in
字号:
CC = @TEST_CC@F77 = @TEST_F77@INCLUDE_DIR = @ROMIO_INCLUDE@# because := is not universally avalible, we have to play games to use the# user-specified LDFLAGS and OUR_LIBS env. variables (if set)OUR_LIBS = @TEST_LIBNAME@ @MPI_LIB@ @ROMIO_LIBLIST@ ${LDFLAGS} ${LIBS}USER_CFLAGS = @CPPFLAGS@ @USER_CFLAGS@ $(INCLUDE_DIR)USER_FFLAGS = @CPPFLAGS@ @USER_FFLAGS@ $(INCLUDE_DIR)CTESTS = simple perf async coll_test coll_perf misc file_info excl large_array \ atomicity noncontig i_noncontig noncontig_coll split_coll shared_fp \ large_file psimple error status noncontig_coll2 aggregation1 aggregation2 \ async-multiple ordered_fpFTESTS = fcoll_test fperf fmisc pfcoll_test srcdir=@srcdir@@VPATH@all: c-test @FORTRAN_TEST@c-test: $(CTESTS)default: all.c.o: $(CC) $(USER_CFLAGS) -c $<.f.o: $(F77) $(USER_FFLAGS) -c $<.o: $(CC) $(USER_CFLAGS) -o $@ $< $(OUR_LIBS)clean: rm -f .P* PI* *.o rm -f $(CTESTS) $(FTESTS) @-rm -f work.pc work.pcl## The Fortran tests must be built with the Fortran linkerfperf: fperf.o $(F77) $(USER_FFLAGS) -o fperf fperf.o $(OUR_LIBS)fcoll_test: fcoll_test.o $(F77) $(USER_FFLAGS) -o fcoll_test fcoll_test.o $(OUR_LIBS)fmisc: fmisc.o $(F77) $(USER_FFLAGS) -o fmisc fmisc.o $(OUR_LIBS)pfcoll_test: pfcoll_test.o $(F77) $(USER_FFLAGS) -o pfcoll_test pfcoll_test.o $(OUR_LIBS)#testing: # -./runtests $(TESTARGS)cleanall: -@rm -f .P* PI* misc.c large_file.c fcoll_test.f fmisc.f fperf.f \ mpif.h $(CTESTS) $(FTESTS) *.out runtests pfcoll_test.f
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -