makefile
来自「这是韩国EQUATOR公司提供的DEMO程序」· 代码 · 共 47 行
TXT
47 行
###
### Copyright (c) 2001 Equator Technologies, Inc.
###
#
# Name of the target output library
#
TARGET = vswap
SRC = vswap
#
# Setup the options
#
VAS_OPTIONS = -L \
-j \
-mmapca \
-b$(TARGET) \
-o$(TARGET)_vlx
VLXCC_OPTIONS = -O -S -g
#
# Setup the compilers to use to build this
# application.
#
VCC = vlxcc
VAS = vas
INSTALL = install -m 644
VLXFLAG = -vas
#
# Do the final asseble with the VAS assembler
#
$(TARGET)_vlx.c: $(SRC).s
$(VAS) $(VAS_OPTIONS) $(INCLUDES) $(SRC).s
$(INSTALL) $(TARGET)_vlx.c ..
$(INSTALL) $(TARGET)_vlx.h ..
$(SRC).s: $(SRC).c
$(VCC) $(VLXCC_OPTIONS) $(SRC).c
clean:
$(RM) $(TARGET)_vlx.[ch] *.s
clobber:
$(RM) $(TARGET)_vlx.[ch] *.s *.lst *.o *.trace dst
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?