📄 makefile.in
字号:
# Distribution makefile for the NT filesystem driver## Copyright (C) 1997, 1999 Martin v. L鰓is# Copyright (C) 1997 R間is Duchesne# Makefile configuration# Files# These lists are maintained manually, to avoid distributing garbageC_SRC = \ linux20/fs.c \ linux20/support.c \ linux20/sysctl.c \ linux21/fs.c \ linux21/support.c \ linux21/sysctl.c \ 44bsd/mount_ntfs.c \ 44bsd/ntfs_vfsops.c \ 44bsd/ntfs_vnops.c \ 44bsd/support.c \ user/dump.c \ user/ntcat.c \ user/ntchange.c \ user/ntcp.c \ user/ntdir.c \ user/ntdump.c \ user/ntgrep.c \ user/ntmkdir.c \ user/nttools.c \ user/support.c \ common/attr.c \ common/dir.c \ common/inode.c \ common/super.c \ common/util.c \ nt/getopt.c \ nt/getopt1.c \ user/mkntfs.cH_SRC = \ linux20/sysctl.h \ linux20/ntfstypes.h \ linux21/sysctl.h \ linux21/ntfs_fs.h \ linux21/ntfstypes.h \ user/dump.h \ user/nttools.h \ user/ntfstypes.h \ common/attr.h \ common/dir.h \ common/inode.h \ common/macros.h \ common/struct.h \ common/super.h \ common/support.h \ common/util.h \ common/ntfsendian.h \ nt/getopt.h \ nt/nttypes.h \ nt/config.h \ nt/ntfstypes.h \ 44bsd/ntfstypes.h \ user/attrtypes.hMK_SRC = \ scripts/install-sh \ scripts/config.guess \ scripts/config.sub \ configure.in \ acconfig.h \ config.h.in \ Makefile.in \ linux20/GNUmakefile.in \ linux21/GNUmakefile.in \ 44bsd/Makefile.in \ user/Makefile.in \ nt/ntfs.mak \ configureEXTRA_SRC = \ linux20/patch \ linux20/kernelmakefile \ linux21/ntfs_fs_i.h.in \ linux21/ntfs_fs_sb.h.in \ linux21/kernelpatch \ linux21/kernelmakefile \ linux21/ntfs.txt \ ntfs.lpm \ COPYING \ HACKING \ INSTALL \ README \ doc/AttrDef.html \ doc/Boot.html \ doc/LogFile.html \ doc/UpCase.html \ doc/abitmap.html \ doc/attr.html \ doc/attrlist.html \ doc/data.html \ doc/dir.html \ doc/direntry.html \ doc/filename.html \ doc/index.html \ doc/indexallocation.html \ doc/indexroot.html \ doc/logrecord.html \ doc/mft.html \ doc/restart.html \ doc/runs.html \ doc/special.html \ doc/standard.html \ ToDoDIST = $(C_SRC) $(H_SRC) $(MK_SRC) $(EXTRA_SRC)# Subdirectories to buildSUBDIR = user @specific_dir@ALLSUBDIRS = user 44bsd linux20 linux21# Programs@SET_MAKE@ETAGS = @ETAGS@TAR = @TAR@# Note : Solaris 'make' doesn't support the -C optionall: force @for i in $(SUBDIR); do \ cd $$i; \ $(MAKE); \ cd ..; \ doneinstall: force @for i in $(SUBDIR); do \ cd $$i; \ $(MAKE) install; \ cd ..; \ doneclean: force @for i in $(SUBDIR); do \ cd $$i; \ $(MAKE) clean; \ cd ..; \ done; \ rm -f core *~distclean: clean @for i in $(ALLSUBDIRS); do \ cd $$i; \ $(MAKE) distclean; \ cd ..; \ done; \ rm -f config.cache config.log config.status config.h Makefilemount: force cd ./@specific_dir@;$(MAKE) mountumount: force cd ./@specific_dir@;$(MAKE) umount# Autoconf autoremake# FIXME: consider srcdir?configure: configure.in autoconfconfig.h: stamp-hstamp-h: config.h.in config.status ./config.statusMakefile: Makefile.in config.status ./config.statusconfig.status: configure ./config.status --recheck# This target doesn't generate a 'force' file. A target 'foo' depending on# 'force' is therefore forced to be updated, even if a 'foo' file existsforce:# Following rules are only used by the distribution maintainer, supposed to be# running a GNU system :)tags: force $(C_SRC) @$(ETAGS) $(C_SRC) $(H_SRC).tar.gz: force @rm -f ../ntfs.tar.gz; \ date=`date +"%y%m%d"`; \ sed -e "s/^#define NTFS_VERSION \"\(.*\)\"/#define NTFS_VERSION \"$$date\"/" acconfig.h > acconfig2.h; \ mv acconfig2.h acconfig.h; \ autoheader; \ $(TAR) -C .. -cvzopf ntfs.tar.gz $(DIST:%=ntfs/%)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -