⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 NTFS(NT文件系统) for Linux的一个实现源码
💻 IN
字号:
# Makefile for the NT filesystem user part## Copyright (C) 1997 R間is Duchesne## Note : Do 'make clean_makespace' each time you modify this Makefile.# Does anybody know how to include dependancies in a portable way?# Files#  Programs to buildPRG = ../ntdir ../ntdump ../ntgrep ../ntcat ../ntchange ../ntcp ../ntmkdir \	../mkntfs#  ProgramsCC      = @CC@INSTALL = @INSTALL@# Compilation flags#  To reach config.hCFLAGS  = -I..#  To reach the common stuffCFLAGS += -I../common -I.#  WarningsCFLAGS += -Wall -Wstrict-prototypes#  Flags from 'configure'CFLAGS += @gcccflags@ @DEFS@all: force $(PRG)# Note : Solaris 'make' doesn't support the $^ variableDEP_MKNTFS = mkntfs.o support.o util.o nttools.o dir.o inode.o super.o attr.o../mkntfs: $(DEP_MKNTFS)	$(CC) -o $@ $(DEP_MKNTFS)DEP_NTDIR = ntdir.o support.o util.o nttools.o dir.o inode.o super.o attr.o../ntdir: $(DEP_NTDIR)	$(CC) -o $@ $(DEP_NTDIR)DEP_NTDUMP = ntdump.o dump.o support.o util.o nttools.o dir.o inode.o super.o attr.o../ntdump: $(DEP_NTDUMP)	$(CC) -o $@ $(DEP_NTDUMP)DEP_NTGREP = ntgrep.o dump.o support.o util.o nttools.o dir.o inode.o super.o attr.o../ntgrep: $(DEP_NTGREP)	$(CC) -o $@ $(DEP_NTGREP)DEP_NTCAT = ntcat.o support.o util.o nttools.o dir.o inode.o super.o attr.o../ntcat: $(DEP_NTCAT)	$(CC) -o $@ $(DEP_NTCAT)DEP_NTCHANGE = ntchange.o support.o util.o nttools.o dir.o inode.o super.o attr.o../ntchange: $(DEP_NTCHANGE)	$(CC) -o $@ $(DEP_NTCHANGE)DEP_NTCP = ntcp.o support.o util.o nttools.o dir.o inode.o super.o attr.o../ntcp: $(DEP_NTCP)	$(CC) -o $@ $(DEP_NTCP)DEP_NTMKDIR = ntmkdir.o support.o util.o nttools.o dir.o inode.o super.o attr.o../ntmkdir: $(DEP_NTMKDIR)	$(CC) -o $@ $(DEP_NTMKDIR)attr.o:	../common/attr.c	$(CC) $(CFLAGS) -c $< -o $@dir.o:	../common/dir.c	$(CC) $(CFLAGS) -c $< -o $@inode.o:	../common/inode.c	$(CC) $(CFLAGS) -c $< -o $@super.o:	../common/super.c	$(CC) $(CFLAGS) -c $< -o $@util.o:		../common/util.c	$(CC) $(CFLAGS) -c $< -o $@# Put the tree in its scratch stateclean: force clean_workspace clean_makespacedistclean: clean	@rm -f Makefile# Remove work files from the work spaceclean_workspace: force	@rm -f core *~; \	echo User workspace is now clean# Remove files created by this Makefileclean_makespace: force	@rm -rf $(DDIR) *.o $(PRG); \	echo User makespace is now clean# Install the binariesinstall: force all	$(INSTALL) -d /usr/local/bin; \	$(INSTALL) $(PRG) /usr/local/bin# 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:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -