📄 makefile
字号:
## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -