这是一个非常简单的问题,但我是makefiles的新手。我正在尝试制作一个将编译两个独立程序的makefile:
program1:
gcc -o prog1 program1.c
program2:
gcc -o prog2 program2.c
网上所有的例子都比我需要的更详细,让人感到困惑!我真正想做的就是运行两条gcc
行。我做错了什么?
答案 0 :(得分:56)
这样做
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
答案 1 :(得分:21)
############################################################################
# '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
答案 2 :(得分:17)
Pattern rules允许您使用make
编译需要相同编译命令的多个c文件,如下所示:
objects = program1 program2
all: $(objects)
$(objects): %: %.c
$(CC) $(CFLAGS) -o $@ $<
答案 3 :(得分:10)
all: program1 program2
program1:
gcc -Wall -o prog1 program1.c
program2:
gcc -Wall -o prog2 program2.c
答案 4 :(得分:1)
简单程序的编译工作流程很简单,我可以将它绘制成一个小图:source - &gt; [汇编] - &gt;对象[链接] - &gt;可执行文件。此图中有文件(源,对象,可执行文件)和规则( make 的术语)。该图表在 Makefile 中定义。
启动make时,它会读取 Makefile ,并检查已更改的文件。如果有,它会触发规则,这取决于它。 规则可能会生成/更新其他文件,这可能会触发其他规则等。如果你创建一个好的makefile,只会运行必要的规则(编译器/链接命令),这些命令在依赖关系路径中的修改后的文件中显示为“next”。
选择一个示例 Makefile ,阅读手册的语法(无论如何,第一眼看清楚,没有手册),绘制图表。您必须了解编译器选项才能找到结果文件的名称。
make图表应该像您想要的那样复杂。你甚至可以做无限循环(不要做)!您可以告诉 make ,哪个规则是您的目标,因此只有左侧的文件将用作触发器。
再次:绘制图表!。
答案 5 :(得分:1)
这会将*.c
上的所有make
文件编译为没有.c
扩展名gcc program.c -o program
的可执行文件。
make
会自动添加您添加到CFLAGS
中的所有标志,例如CFLAGS = -g Wall
。
如果不需要任何标志,CFLAGS
可以留为空白(如下所示)或完全省略。
SOURCES = $(wildcard *.c)
EXECS = $(SOURCES:%.c=%)
CFLAGS =
all: $(EXECS)
答案 6 :(得分:0)
all: program1 program2
program1:
gcc -Wall -ansi -pedantic -o prog1 program1.c
program2:
gcc -Wall -ansi -pedantic -o prog2 program2.c
我更喜欢ansi和pedantic,更好地控制你的程序。当你还有警告时,它不会让你编译!!
答案 7 :(得分:0)
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
如果设置CXX
,则CXXFLAGS
变量make
将使用它们。