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

📄 whole-or-file.mk

📁 The library provides supports for run-time loaded plugin classes in C++
💻 MK
字号:
# Builds either:# - the whole target (default) # - One (or several) specified objects## GOAL    - the goal given on command line (usually a .PHONY goal)# TARGET  - output file with all qualifiers qualifiers (libfoo.a)# OBJS    - list of all object filesifeq ($(findstring $(BINDIR),$(MAKECMDGOALS)),)    # Default, full target (No object files specified)    $(GOAL): $(TARGET)            # This target is used when compiling the whole targetelse    # Single/multiple file (object files specified)    OBJS:= $(filter $(OBJS), $(MAKECMDGOALS))    $(GOAL): clean $(OBJS)        # This target is used when compiling a single file endif

⌨️ 快捷键说明

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