需要一个编译多个c文件的makefile

RT需要一个Linux下编译多个c文件的makefile只包括了标准库文件... RT
需要一个Linux下编译多个c文件的 makefile
只包括了标准库文件
展开
 我来答
可可托海的牧羊人Do
2013-12-25 · TA获得超过303个赞
知道小有建树答主
回答量:209
采纳率:0%
帮助的人:89万
展开全部
# $Id: Makefile,v 2.0 2008/10/08 18:55:40 Update $ 
prog_name = TEST #目标文件名
###################################### 

# Generic makefile 

# by Jackie Xie 
# email: jackie.CPlusPlus@gmail.com 

# Copyright (c) 2008 Jackie Xie 
# All rights reserved. 

# No warranty, no liability; 
# you use this at your own risk. 

# You are free to modify and 
# distribute this without giving 
# credit to the original author. 

###################################### 
### Customising 

# Adjust the following if necessary; EXECUTABLE is the target 
# executable"s filename, and LIBS is a list of libraries to link in 
# (e.g. alleg, stdcx, iostr, etc). You can override these on make"s 
# command line of course, if you prefer to do it that way. 

EXECUTABLE := $(prog_name) 
LIBS :=   #库文件   没有可不写
# Now alter any implicit rules" variables if you like, e.g.: 

CFLAGS := -g -Wall -O
CXXFLAGS := $(CFLAGS) 
CC := gcc   #编译器
# The next bit checks to see whether rm is in your djgpp bin 
# directory; if not it uses del instead, but this can cause (harmless) 
# `File not found" error messages. If you are not using DOS at all, 
# set the variable to something which will unquestioningly remove 
# files. 

ifneq ($(wildcard $(DJDIR)/bin/rm),) 
RM-F := rm -f 
else 
RM-F := del 
endif 
# You shouldn"t need to change anything below this point. 

# ................... 
SOURCE := $(wildcard *.cpp) $(wildcard *.c) 
OBJS := $(patsubst %.cpp,%.o,$(patsubst %.c,%.o,$(SOURCE))) 
DEPS := $(patsubst %.o,%.d,$(OBJS)) 
MISSING_DEPS := $(filter-out $(wildcard $(DEPS)),$(DEPS)) 
MISSING_DEPS_SOURCES := $(wildcard $(patsubst %.d,%.cpp,$(MISSING_DEPS)) $(patsubst %.d,%.cpp,$(MISSING_DEPS))) 
CPPFLAGS += -MD 
.PHONY : everything deps objs clean veryclean rebuild 
everything : $(EXECUTABLE) 
deps : $(DEPS) 
objs : $(OBJS) 
clean : 
@$(RM-F) *.o 
@$(RM-F) *.d

veryclean: clean 
@$(RM-F) $(EXECUTABLE)  
@$(RM-F) *.*~ *~ 
distclean: veryclean 
rebuild: veryclean everything 
ifneq ($(MISSING_DEPS),) 
$(MISSING_DEPS) : 
@$(RM-F) $(patsubst %.d,%.o,$@) 
endif 
-include $(DEPS)

$(EXECUTABLE) : $(OBJS) 
$(CC) -o $(EXECUTABLE) $(OBJS) $(addprefix ,$(LIBS))


复制,保存为makefile 文件即可。

秒懂百科
2021-05-11 · TA获得超过5.9万个赞
知道大有可为答主
回答量:25.3万
采纳率:88%
帮助的人:1.2亿
展开全部

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式