📄 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_ntfs.lalibadio_ntfs_la_SOURCES = \ io_romio_ad_ntfs.c \ ad_ntfs.h \ io_romio_ad_ntfs_close.c \ io_romio_ad_ntfs_done.c \ io_romio_ad_ntfs_fcntl.c \ io_romio_ad_ntfs_flush.c \ io_romio_ad_ntfs_iread.c \ io_romio_ad_ntfs_iwrite.c \ io_romio_ad_ntfs_open.c \ io_romio_ad_ntfs_read.c \ io_romio_ad_ntfs_resize.c \ io_romio_ad_ntfs_wait.c \ io_romio_ad_ntfs_write.c## Sym link the sources to conform to the MCA prefix name rule#dir=$(top_srcdir)/adio/ad_ntfs$(libadio_ntfs_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 + -