下面这个makefile非常简单,能满足基本的项目需要,首先是一个总的target:68Please respect copyright.PENANAbQXKpNLzsO
all: $(TARGET)
这个总的target由多个.o文件link而成:68Please respect copyright.PENANAZQlmCz5r8Q
$(TARGET) : $(OBJECTS)68Please respect copyright.PENANAMW6gchrCAo
$(CC) -o $(TARGET) $(addprefix $(OBJ_DIR)/, $(OBJECTS)) $(CFLAGS)68Please respect copyright.PENANAnhw5K8QUUZ
echo "make succeed"
每个.o文件对应一个同名的.cpp文件,加上全局的头文件,这里有3个全局的头文件,如果不加头文件,那么当头文件被修改时,.cpp不会被重新编译成.o,因此一定要加:68Please respect copyright.PENANAqShrJtZKJa
%.o : %.cpp $(H_DIR)/01.system.h $(H_DIR)/02.01.macros.h $(H_DIR)/02.types.h68Please respect copyright.PENANAiEyLjiWZoz
$(CC) -c -g $< -o $(OBJ_DIR)/$@
这样makefile就做好了,完整的内容如下:
----------makefile------------------
CC = gcc68Please respect copyright.PENANAShiV4faYVL
CFLAGS = -lpthread -lm -lssl -lcrypto -lzip -g68Please respect copyright.PENANAxiodiUgCdE
68Please respect copyright.PENANA9szlUcHmvO
TARGET = buda68Please respect copyright.PENANAZJmQWzGmDy
OBJ_DIR = ./debug/obj68Please respect copyright.PENANAgOQ9VGGJUw
SRC_DIR = ./src68Please respect copyright.PENANAtL1f4Fqasg
H_DIR = ./includes68Please respect copyright.PENANA17MBG5zfSE
68Please respect copyright.PENANAr4ScOuQFNL
SRC = $(wildcard $(SRC_DIR)/*.cpp)68Please respect copyright.PENANAyAxEror33K
OBJECTS = $(patsubst $(SRC_DIR)/%.cpp, %.o, $(SRC))68Please respect copyright.PENANAEITwZexgf6
68Please respect copyright.PENANAy3z9zPHLux
VPATH = $(SRC_DIR)68Please respect copyright.PENANADTOz8amYo9
vpath %.o $(OBJ_DIR)68Please respect copyright.PENANAPYgQkNj0tY
68Please respect copyright.PENANAbveX6QHH4C
all: $(TARGET)68Please respect copyright.PENANAZvki6I4sTi
68Please respect copyright.PENANAJs88mLRs1y
$(TARGET) : $(OBJECTS)68Please respect copyright.PENANAscInN1suxa
$(CC) -o $(TARGET) $(addprefix $(OBJ_DIR)/, $(OBJECTS)) $(CFLAGS)68Please respect copyright.PENANAfl0YwZ1q7f
echo "make succeed"68Please respect copyright.PENANAmqAVt9zdRg
68Please respect copyright.PENANA0IKFxrklYr
%.o : %.cpp $(H_DIR)/01.system.h $(H_DIR)/02.01.macros.h $(H_DIR)/02.types.h68Please respect copyright.PENANASLjfhE8k2V
$(CC) -c -g $< -o $(OBJ_DIR)/$@
.PHONY : clean
clean:68Please respect copyright.PENANA4ufgAQckhI
rm -rf ./debug/$(TARGET) $(TARGET) $(OBJ_DIR)/*.o ./*.o
rebuild:68Please respect copyright.PENANAo71YRE2prC
make clean68Please respect copyright.PENANA8yJ8sx4luR
make68Please respect copyright.PENANArMEAO3Lzov
68Please respect copyright.PENANAoS7FmQXz74
68Please respect copyright.PENANAeAO5F1b1vm
------------------------------------
Section X. Thanks
https://blog.csdn.net/qq_38113006/article/details/11205507668Please respect copyright.PENANAMIX46dfXKb
https://blog.csdn.net/momodosky/article/details/11985798068Please respect copyright.PENANAHuDFpbpZoQ
https://makefiletutorial.com/68Please respect copyright.PENANAvddTeW1EuR
https://makefiletutorial.com/#makefile-cookbook
Section Y. Contacts Me
If you found any errors or have any suggestions for this article, please let me know, my wechat: si_jinmin, my email: [email protected]68Please respect copyright.PENANAIX4yRUKVg8
如果您发现本文有任何错误,或者对本文有好的建议,欢迎与我联系探讨,我的微信: si_jinmin, 我的email: [email protected]
如果您對C/C++ Programming, Linux, HTTP Protocol, Website Development, Vue, Git, VsCode感興趣,邀請您加入「Linux/C/C++ Website Development」微信群,請加我的微信(si_jinmin)以便拉您进群。68Please respect copyright.PENANApJLCYptTDW
68Please respect copyright.PENANAIyvycYIkul