📄 fm.mak
字号:
### Copyright(R) 1997 Intel Corporation
########################################################################
###
### Object: Makefile for fm_enh directory. This file includes make
### directives to make the fm_enh directory code. It should
### not require porting unless your make tools are
### significantly different.
###
###
### $Workfile: fm.mak $
### $Revision: 20 $
###
### $NoKeywords: $
######################################################################## */
# Target Function
# ------ --------
# all make module
# clean remove objects
### Include FDI specific definitions and flags
include ../makeanch
include $(FDI_PATH)/makemac
# Output module names
FM_MOD = $(FM)/fm.out
### Source dependencies
FM_SRCS = $(FM)/fdi_file.c $(FM)/fm_flt.c
FM_OBJS = $(FM)/fdi_file.o $(FM)/fm_flt.o
FM_INCS = $(INCS) $(FM_INC)/fdi_file.h
FM_MAKES = $(MAKES) $(FM)/fm.mak
### additional include paths
CPPFLAGS +=
### additional compilation switches, macro definitions
CFLAGS +=
### fm target
all : $(FM_MOD)
### Link objects
$(FM_MOD) : $(FM_OBJS)
$(LD) -Map fm.map $(LNKFLAGS) -o $@ \
-r $(FM_OBJS)
### Source code compilation
$(FM_OBJS) : $(FM_SRCS) $(FM_INCS) $(FM_MAKES)
$(CC) \
$(CPPFLAGS) \
$(CFLAGS) \
$(FM_SRCS)
### Placebo rules
$(FM_SRCS) :
$(FM_INCS) :
$(FM_MAKES):
fm_clean:
del $(FM_OBJS) $(FM_MOD)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -