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

📄 makefile

📁 已经移植好的java虚拟机
💻
字号:
## Copyright 1995-2002 by Sun Microsystems, Inc.,# 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.# All rights reserved.## This software is the confidential and proprietary information# of Sun Microsystems, Inc. ("Confidential Information").  You# shall not disclose such Confidential Information and shall use# it only in accordance with the terms of the license agreement# you entered into with Sun.# Use is subject to license terms.#TOP=../../../..include $(TOP)/build/Makefile.incSRC_DIR = ../../srcOBJS = \	check_class.o \	main.o \	utf.o \	check_code.o \        convert_md.o \	util.o \	jar.o \	jar_support.o \	classloader.o \	file.o \	classresolver.o \	stubs.o \	inlinejsr.o \	sys_support.oCFLAGS = \	-I$(SRC_DIR) \	-DUNIX -DLINUX \	-DJAVAVERIFY \	-DTRIMMED \	-D$(ARCH) $(EXTRACFLAGS)CC = gccLD = gccDEBUG_FLAG =  LDFLAGS =ifeq ($(DEBUG), true)   DEBUG_FLAG = -g endifall: preverifypreverify: $(OBJS)	$(LD) $(LDFLAGS) -o $@ $(OBJS)%.o: $(SRC_DIR)/%.c	$(CC) -c $(CFLAGS) $(DEBUG_FLAG) $<clean: 	rm -f core *.o preverify

⌨️ 快捷键说明

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