Makefile Template
Posted jiahu-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Makefile Template相关的知识,希望对你有一定的参考价值。
Makefile Template
Makefile
参考:http://www.partow.net/programming/makefile/index.html
CXX := -c++
CXXFLAGS := -pedantic-errors -Wall -Wextra -Werror
LDFLAGS := -L/usr/lib -lstdc++ -lm
BUILD := ./build
OBJ_DIR := $(BUILD)/objects
APP_DIR := $(BUILD)/apps
TARGET := program
INCLUDE := -Iinclude/
SRC := $(wildcard src/module1/*.cpp) $(wildcard src/module2/*.cpp) $(wildcard src/module3/*.cpp) $(wildcard src/*.cpp)
OBJECTS := $(SRC:%.cpp=$(OBJ_DIR)/%.o)
all: build $(APP_DIR)/$(TARGET)
$(OBJ_DIR)/%.o: %.cpp
@mkdir -p $(@D)
$(CXX) $(CXXFLAGS) $(INCLUDE) -c $< -o $@ $(LDFLAGS)
$(APP_DIR)/$(TARGET): $(OBJECTS)
@mkdir -p $(@D)
$(CXX) $(CXXFLAGS) -o $(APP_DIR)/$(TARGET) $^ $(LDFLAGS)
.PHONY: all build clean debug release
build:
@mkdir -p $(APP_DIR)
@mkdir -p $(OBJ_DIR)
debug: CXXFLAGS += -DDEBUG -g
debug: all
release: CXXFLAGS += -O2
release: all
clean:
-@rm -rvf $(OBJ_DIR)/*
-@rm -rvf $(APP_DIR)/*
目录结构
─┬[ Project ]
│
├──● Makefile
│
├──┬[ build ]
│ │
│ ├───[ objects ]
│ └───[ apps ]
│
├──┬[ include ]
│ │
│ ├──● program.hpp
│ │
│ ├──┬[ module1 ]
│ │ │
│ │ ├──● mod1c1.hpp
│ │ └──● mod1c2.hpp
│ │
│ └──┬[ module2 ]
│ │
│ ├──● mod2c1.hpp
│ └──● mod2c2.hpp
│
└──┬[ src ]
│
├──● program.cpp
│
├──┬[ module1 ]
│ │
│ ├──● mod1c1.cpp
│ └──● mod1c2.cpp
│
└──┬[ module2 ]
│
├──● mod2c1.cpp
└──● mod2c2.cpp
以上是关于Makefile Template的主要内容,如果未能解决你的问题,请参考以下文章