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

📄 makefile.nt

📁 遗传算法的一个库
💻 NT
字号:
# Makefile for ServiceOptions project for WinNT: source code compilation# $Id: Makefile.nt,v 1.10 2001/12/11 21:01:58 kav Exp $include ..\..\..\config\Win32\environment.nt.makinclude ..\..\config\Win32\environment.nt.makinclude ..\..\config\Win32\ORB_description.nt.mak#############################!ifndef PROJECT_ROOT        #PROJECT_ROOT=$(MAKEDIR)\..  # debug entries!endif                      ##############################include ..\config\common_settings.nt.makOBJS=ServiceOptions.obj LIBS=$(SLIB)build: $(LIBS) $(SLIB): $(OBJS) ; $(AR) $(AR_FLAGS) $(OBJS)install: $(LIBS) makedir ;    @for %i in ( $(LIBS) ) do @copy %i $(INSTALL_LIB_DIR)uninstall: ;    @for %i in ( $(LIBS) ) do \        @if exist $(INSTALL_LIB_DIR)\%i erase $(INSTALL_LIB_DIR)\%iclean:    @for %i in ( $(LIBS) $(OBJS) ) do @if exist %i erase %i.cpp.obj::	$(CPP) $(CPPFLAGS) $<makedir: ; @if not exist $(INSTALL_LIB_DIR) mkdir $(INSTALL_LIB_DIR)

⌨️ 快捷键说明

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