我使用在線教程製作了測試makefile。它的工作原理,但我也想讓我所有的.o文件轉到特定的子文件夾。有沒有辦法使用makefile來做到這一點?這是我到目前爲止。在MakeFile中設置選項將目標文件發送到特定文件夾
CC=gcC# specifies the compiler to use.
CFLAGS=-I. # specifies to look in the current directory.
DEPS = path_tools.h # DEPS stores each .h file to be added.
OBJ = checkpath.o path_tools.o # OBJ stores each object file to compile.
%.o: %.c $(DEPS)
$(CC) -c -o [email protected] $< $(CFLAGS)
checkpath.exe: $(OBJ)
gcc -o [email protected] $^ $(CFLAGS)
你知道你現在的makefile有什麼功能嗎?它是如何做到的? –