📄 makefile
字号:
# Makefile - makefile for target/src/arch/i86/math## modification history# --------------------# 01d,25oct01,tam updated for repackaging# 01c,10aug01,hdn added support for PENTIUM2/3/4.# 01b,09apr98,hdn added support for Pentium.# 01a,12jul96,yp created from 01b of MakeSkel## DESCRIPTION# This file contains the makefile rules for building the vx library##*/TGT_DIR=$(WIND_BASE)/targetDOC_FILES =LIB_BASE_NAME = archOBJ_HW_SUPPORT = mathHardALib.o mathHardLib.oOBJ_I80386 = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o \ mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)OBJ_I80486 = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o \ mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)OBJ_PENTIUM = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o \ mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)OBJ_PENTIUM2 = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o \ mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)OBJ_PENTIUM3 = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o \ mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)OBJ_PENTIUM4 = emuMainALib.o emuFncALib.o emuOperALib.o emuSubALib.o \ mathALib.o mathSoftLib.o $(OBJ_HW_SUPPORT)OBJS=$(OBJ_$(CPU))include $(TGT_DIR)/h/make/rules.library
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -