makefile
来自「C++连接一写常用数据库的接口」· 代码 · 共 30 行
TXT
30 行
## Make file to build the unit tests for the base components for the DBConnect API# Copyright (c) Johnathan Ingram 2003, jingram@rogueware.org######################################################################SHELL = /bin/shtop_srcdir = ../../..CC = gccCXX = g++CPPFLAGS = -fPIC CFLAGS = $(CPPFLAGS) -g -O2 -DLINUX -I.. ../libbase.aSOURCES = baseValueTests.cpp OBJS = $(SOURCES:.cpp=.o)APPS = $(SOURCES:.cpp=)all: $(OBJS)clean: rm -f *.o rm -f $(APPS) # Application compile, has no .h dependencies%.o: %.cpp common.h $(CXX) -o $* $< $(CFLAGS)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?