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

📄 makefile

📁 这是韩国EQUATOR公司提供的DEMO程序
💻
字号:
###
### Copyright (c) 2001 Equator Technologies, Inc.
###

#
# Name of the target output library
#
TARGET 		= vlumchr
SRC             = vlumchr

#
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -