📄 makefile.am
字号:
## Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana# University Research and Technology# Corporation. All rights reserved.# Copyright (c) 2004-2005 The University of Tennessee and The University# of Tennessee Research Foundation. All rights# reserved.# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, # University of Stuttgart. All rights reserved.# Copyright (c) 2004-2005 The Regents of the University of California.# All rights reserved.# $COPYRIGHT$# # Additional copyrights may follow# # $HEADER$#include $(top_srcdir)/Makefile.options# It is unfortunately necessary to make all the filenames in the ROMIO# distribtion confrom to the MCA prefix name rule -- there is at least# one or two filename conflicts that potentially create problems when# merging everything into onelibmpi.# In developer's copies, we have the real ROMIO files, and sym links# are made. In distribution tarballs, the sym-linked files turn into# real files and the original filenames do not appear.noinst_LTLIBRARIES = libadio_pfs.lalibadio_pfs_la_SOURCES = \ io_romio_ad_pfs.c \ io_romio_ad_pfs_done.c \ io_romio_ad_pfs_fcntl.c \ io_romio_ad_pfs_flush.c \ ad_pfs.h \ io_romio_ad_pfs_hints.c \ io_romio_ad_pfs_iread.c \ io_romio_ad_pfs_iwrite.c \ io_romio_ad_pfs_open.c \ io_romio_ad_pfs_read.c \ io_romio_ad_pfs_wait.c \ io_romio_ad_pfs_write.c## Sym link the sources to conform to the MCA prefix name rule#dir=$(top_srcdir)/adio/ad_pfs$(libadio_pfs_la_SOURCES): if test ! -r $@ ; then \ pname=`echo $@ | cut -b '10-'` ; \ rm -f $@; \ ln -s $(dir)/$$pname $@ ; \ fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -