makefile
来自「用Java写的面相对象的数据库管理系统」· 代码 · 共 38 行
TXT
38 行
# Copyright 2000 by SMB GmbH. All rights reserved.## You can redistribute this software and/or modify it under the terms of# the Ozone Core License version 1 published by ozone-db.org.## $Id: Makefile,v 1.4 2000/10/27 11:11:31 daniela Exp $.PHONY: default all classes proxies xalan xt cleandefault: classes proxies xtall: classes proxies xalan xtinclude Makefile.incMODUL_SRCS = $(Java)XALAN_SRCS = $(XalanXPath)XT_SRCS = $(XtXPath)include ../../../../Makefile.envclasses: $(JAVAC) $(JAVAC_FLAGS) $(MODUL_SRCS)proxies:xalan: $(JAVAC) $(JAVAC_FLAGS) $(XALAN_SRCS)xt: $(JAVAC) $(JAVAC_FLAGS) $(XT_SRCS)clean: -rm *.class -rm *_Proxy.*-include Makefile.dep
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?