Makefile编译多个C程序?

d4so4syb  于 2023-11-16  发布在  其他
关注(0)|答案(8)|浏览(197)

这是一个非常简单的问题,但我是makefile的新手。我正在尝试创建一个makefile,它将编译两个独立的程序:

program1:
    gcc -o prog1 program1.c

program2:
    gcc -o prog2 program2.c

字符串
网上所有的例子都比我需要的更详细,而且很混乱!我真正想做的就是运行两个gcc行。我做错了什么?

31moq8wy

31moq8wy1#

像这样做

all: program1 program2

program1: program1.c
    gcc -o program1 program1.c

program2: program2.c
    gcc -o program2 program2.c

字符串
你说你不想要高级的东西,但你也可以根据一些默认规则这样缩短它。

all: program1 program2

program1: program1.c
program2: program2.c

cgh8pdjw

cgh8pdjw2#

模式规则允许您编译多个c文件,这些文件需要使用make的相同编译命令,如下所示:

objects = program1 program2
all: $(objects)

$(objects): %: %.c
        $(CC) $(CFLAGS) -o $@ $<

字符串

yacmzcpb

yacmzcpb3#

############################################################################
# 'A Generic Makefile for Building Multiple main() Targets in $PWD'
# Author:  Robert A. Nader (2012)
# Email: naderra at some g
# Web: xiberix
############################################################################
#  The purpose of this makefile is to compile to executable all C source
#  files in CWD, where each .c file has a main() function, and each object
#  links with a common LDFLAG.
#
#  This makefile should suffice for simple projects that require building
#  similar executable targets.  For example, if your CWD build requires
#  exclusively this pattern:
#
#  cc -c $(CFLAGS) main_01.c
#  cc main_01.o $(LDFLAGS) -o main_01
#
#  cc -c $(CFLAGS) main_2..c
#  cc main_02.o $(LDFLAGS) -o main_02
#
#  etc, ... a common case when compiling the programs of some chapter,
#  then you may be interested in using this makefile.
#
#  What YOU do:
#
#  Set PRG_SUFFIX_FLAG below to either 0 or 1 to enable or disable
#  the generation of a .exe suffix on executables
#
#  Set CFLAGS and LDFLAGS according to your needs.
#
#  What this makefile does automagically:
#
#  Sets SRC to a list of *.c files in PWD using wildcard.
#  Sets PRGS BINS and OBJS using pattern substitution.
#  Compiles each individual .c to .o object file.
#  Links each individual .o to its corresponding executable.
#
###########################################################################
#
PRG_SUFFIX_FLAG := 0
#
LDFLAGS := 
CFLAGS_INC := 
CFLAGS := -g -Wall $(CFLAGS_INC)
#
## ==================- NOTHING TO CHANGE BELOW THIS LINE ===================
##
SRCS := $(wildcard *.c)
PRGS := $(patsubst %.c,%,$(SRCS))
PRG_SUFFIX=.exe
BINS := $(patsubst %,%$(PRG_SUFFIX),$(PRGS))
## OBJS are automagically compiled by make.
OBJS := $(patsubst %,%.o,$(PRGS))
##
all : $(BINS)
##
## For clarity sake we make use of:
.SECONDEXPANSION:
OBJ = $(patsubst %$(PRG_SUFFIX),%.o,$@)
ifeq ($(PRG_SUFFIX_FLAG),0)
        BIN = $(patsubst %$(PRG_SUFFIX),%,$@)
else
        BIN = $@
endif
## Compile the executables
%$(PRG_SUFFIX) : $(OBJS)
    $(CC) $(OBJ)  $(LDFLAGS) -o $(BIN)
##
## $(OBJS) should be automagically removed right after linking.
##
veryclean:
ifeq ($(PRG_SUFFIX_FLAG),0)
    $(RM) $(PRGS)
else
    $(RM) $(BINS)
endif
##
rebuild: veryclean all
##
## eof Generic_Multi_Main_PWD.makefile

字符串

zf2sa74q

zf2sa74q4#

all: program1 program2

program1:
    gcc -Wall -o prog1 program1.c

program2:
    gcc -Wall -o prog2 program2.c

字符串

6rqinv9w

6rqinv9w5#

all: program1 program2

program1:
    gcc -Wall -ansi -pedantic -o prog1 program1.c

program2:
    gcc -Wall -ansi -pedantic -o prog2 program2.c

字符串
我更喜欢ansi和pedantic,一个更好的控制你的程序。它不会让你编译,而你仍然有警告!!

bwitn5fc

bwitn5fc6#

一个简单的程序的编译流程很简单,我可以把它画成一个小图:source -> [compilation] -> object [linking] -> executable。这个图中有 files(source,object,executable),还有 rulesmake 的术语)。这个图在 Makefile 中定义。
当你启动make时,它会读取 Makefile,并检查是否有更改的 files。如果有,它会触发依赖于它的 rulerule 可能会生成/更新更多的 files,这可能会触发其他的 rules 等等。如果你创建了一个好的makefile,只需要必要的 rules(编译器/链接命令)将运行,它代表依赖路径中修改文件的“下一个”。
选择一个例子 Makefile,阅读语法手册(无论如何,它是清晰的第一眼,w/o手册),并画出图。你必须了解编译器选项,以找出结果文件的名称。
make图应该尽可能的复杂。你甚至可以做无限循环(不要做)!你可以告诉 make,哪个规则是你的 * 目标 *,所以只有左边的 * 文件 * 将被用作触发器。
再次:绘制图表

ezykj2lf

ezykj2lf7#

SRC = a.cpp b.cpp
BIN = $(patsubst %.cpp,%,$(SRC))

all: $(BIN)

clean:
    rm -f $(BIN)

.PHONY: all clean

字符串
make all可以:

c++     a.cpp   -o a
c++     b.cpp   -o b


如果你设置了CXXCXXFLAGS变量,make将使用它们。

piv4azn7

piv4azn78#

这将把make上的所有*.c文件编译为不带gcc program.c -o program扩展名的可执行文件。
make会自动添加任何你添加到CFLAGS的标志,就像CFLAGS = -g Wall一样。
如果你不需要任何标志,CFLAGS可以留空(如下所示)或完全省略。

SOURCES = $(wildcard *.c)
EXECS = $(SOURCES:%.c=%)
CFLAGS = 

all: $(EXECS)

字符串

相关问题