makefile

来自「已经移植好的java虚拟机」· 代码 · 共 62 行

TXT
62
字号
## 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 + =
减小字号Ctrl + -
显示快捷键?