makefile.win

来自「C++连接一写常用数据库的接口」· WIN 代码 · 共 25 行

WIN
25
字号
#
# Windows
# Make file to build the unit tests for the base components for the DBConnect API
# Copyright (c) Johnathan Ingram 2003
#
#####################################################################
include ..\..\..\windows.conf

SOURCES = baseValueTests.cpp
OBJS = $(SOURCES:.cpp=.obj)
APPS = $(SOURCES:.cpp=)
CFLAGS = /I.. ..\libbase.lib

all: $(OBJS)

clean:
	@if exist *.obj del *.obj
	@if exist *.lib del *.lib
	@if exist *.exp del *.exp


# Application compile
.cpp.obj:
	$(CXX) $< $(CPPFLAGS) /Fo$* $(CFLAGS)

⌨️ 快捷键说明

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