环境(C语言)

  • 2021-05-12 更新一个简单的makefile 兼容linux和window
  • 通过USE_LINUX_COMPILE 去配置兼容哪个平台
  • # 一个通用的Makefile模板
    # [兼容linux和window]
    ifeq ($(USE_LINUX_COMPILE),)USE_LINUX_COMPILE = no ;yes:linux no:window
    endif# $(notdir $(CURDIR)) 获取目录名
    TARGET = $(notdir $(CURDIR)) CROSS_COMPILE = gcc
    COMPILE.c = $(CROSS_COMPILE)  -c
    LINK.c = $(CROSS_COMPILE)ifeq ($(USE_LINUX_COMPILE),yes)RM = rm # linux 删除指令是rm
    elseRM = del # window 删除指令是del
    endif# $(wildcard src/*.c) :获取src/ 目录下的所有.c文件。
    # $(wildcard inc/*.h) :获取inc/ 目录下的所有.h文件。
    # SOURCES = $(wildcard src/*.c)
    # HEADERS = $(wildcard src/*.h)SOURCES = $(wildcard *.c)
    HEADERS = $(wildcard *.h)# 静态模式规则。变量OBJFILES集合下的所有.c 替换成 .o文件
    OBJFILES = $(SOURCES:%.c=%.o).PHONY:clean all install#all:终极目标
    all:$(TARGET) @echo builded target successful :$^.exe@echo
    #目标文件依赖规则
    $(TARGET): $(OBJFILES) @echo @echo Linking $@ from $^...$(LINK.c) -o $@ $^ @echo Link finished#OBJFILES的依赖规则
    $(OBJFILES): %.o:%.c@echo@echo Compiling $@ from $<...$(COMPILE.c) -o $@ $<@echo Compile finished
    #清除生成的目标
    clean:@echo Removing generated files...@ -$(RM) -rf $(OBJFILES) $(TARGET) *~ *.d *.o *.exe@echo Removing generated files successful
  • 发现了一个更好的 没有看懂 哈哈 贴上记录一下 试了一下 是可以的
  • Makefile
  • #############################################################################
    #
    # Generic Makefile for C/C++ Program
    #
    # License: GPL (General Public License)
    # Author:  whyglinux <whyglinux AT gmail DOT com>
    # Date:    2006/03/04 (version 0.1)
    #          2007/03/24 (version 0.2)
    #          2007/04/09 (version 0.3)
    #          2007/06/26 (version 0.4)
    #          2008/04/05 (version 0.5)
    #
    # Description:
    # ------------
    # This is an easily customizable makefile template. The purpose is to
    # provide an instant building environment for C/C++ programs.
    #
    # It searches all the C/C++ source files in the specified directories,
    # makes dependencies, compiles and links to form an executable.
    #
    # Besides its default ability to build C/C++ programs which use only
    # standard C/C++ libraries, you can customize the Makefile to build
    # those using other libraries. Once done, without any changes you can
    # then build programs using the same or less libraries, even if source
    # files are renamed, added or removed. Therefore, it is particularly
    # convenient to use it to build codes for experimental or study use.
    #
    # GNU make is expected to use the Makefile. Other versions of makes
    # may or may not work.
    #
    # Usage:
    # ------
    # 1. Copy the Makefile to your program directory.
    # 2. Customize in the "Customizable Section" only if necessary:
    #    * to use non-standard C/C++ libraries, set pre-processor or compiler
    #      options to <MY_CFLAGS> and linker ones to <MY_LIBS>
    #      (See Makefile.gtk+-2.0 for an example)
    #    * to search sources in more directories, set to <SRCDIRS>
    #    * to specify your favorite program name, set to <PROGRAM>
    # 3. Type make to start building your program.
    #
    # Make Target:
    # ------------
    # The Makefile provides the following targets to make:
    #   $ make           compile and link
    #   $ make NODEP=yes compile and link without generating dependencies
    #   $ make objs      compile only (no linking)
    #   $ make tags      create tags for Emacs editor
    #   $ make ctags     create ctags for VI editor
    #   $ make clean     clean objects and the executable file
    #   $ make distclean clean objects, the executable and dependencies
    #   $ make help      get the usage of the makefile
    #
    #===========================================================================## Customizable Section: adapt those variables to suit your program.
    ##==========================================================================
    -include ../Rules.make
    # The pre-processor and compiler options.
    MY_CFLAGS =# The linker options.
    MY_LIBS   =# The pre-processor options used by the cpp (man cpp for more).
    CPPFLAGS  = -Wall# The options used in linking as well as in any direct use of ld.
    LDFLAGS   += -lrt# The directories in which source files reside.
    # If not specified, only the current directory will be serached.
    SRCDIRS   = ./kf_base ./kf_net ./kf_share .# The executable file name.
    # If not specified, current directory name or `a.out' will be used.
    PROGRAM   = kfserver## Implicit Section: change the following only when necessary.
    ##==========================================================================# The source file types (headers excluded).
    # .c indicates C source files, and others C++ ones.
    #SRCEXTS = .c .C .cc .cpp .CPP .c++ .cxx .cp
    SRCEXTS = .c# The header file types.
    #HDREXTS = .h .H .hh .hpp .HPP .h++ .hxx .hp
    HDREXTS = .h# The pre-processor and compiler options.
    # Users can override those variables from the command line.
    CFLAGS  = -g -O0 -Wall -mcpu=arm926ej-s
    CXXFLAGS= -g -O2GNU_TOOLCHAIN_PREFIX = $(CSTOOL_PREFIX)
    # The C program compiler.
    CC     := $(GNU_TOOLCHAIN_PREFIX)gcc# The C++ program compiler.
    #CXX    = g++# Un-comment the following line to compile C programs as C++ ones.
    #CC     = $(CXX)# The command used to delete file.
    #RM     = rm -fETAGS = etags
    ETAGSFLAGS =CTAGS = ctags
    CTAGSFLAGS =
    #VERBOSE_COMMAND = quiet
    ## Quiet commands
    ifeq ($(VERBOSE_COMMAND),)
    Q           = @
    Q_compile   = @echo '  CC     $< => $@';
    Q_link      = @echo '  LD     $@';
    Q_ar        = @echo '  AR     $@';
    Q_mkdir     =  echo '  MKDIR  $1';
    Q_clean     = @echo '  CLEAN';
    Q_distclean = @echo '  DISTCLEAN';
    endif
    ## Stable Section: usually no need to be changed. But you can add more.
    ##==========================================================================
    SHELL   = /bin/sh
    EMPTY   =
    SPACE   = $(EMPTY) $(EMPTY)
    ifeq ($(PROGRAM),)CUR_PATH_NAMES = $(subst /,$(SPACE),$(subst $(SPACE),_,$(CURDIR)))PROGRAM = $(word $(words $(CUR_PATH_NAMES)),$(CUR_PATH_NAMES))ifeq ($(PROGRAM),)PROGRAM = a.outendif
    endif
    ifeq ($(SRCDIRS),)SRCDIRS = .
    endif
    SOURCES = $(foreach d,$(SRCDIRS),$(wildcard $(addprefix $(d)/*,$(SRCEXTS))))
    HEADERS = $(foreach d,$(SRCDIRS),$(wildcard $(addprefix $(d)/*,$(HDREXTS))))
    CFLAGS   = $(foreach i,$(SRCDIRS),-I$i)
    SRC_CXX = $(filter-out %.c,$(SOURCES))
    OBJS    = $(addsuffix .o, $(basename $(SOURCES)))
    DEPS    = $(OBJS:.o=.d)
    ## Define some useful variables.
    DEP_OPT = $(shell if `$(CC) --version | grep "GCC" >/dev/null`; then \echo "-MM -MP"; else echo "-M"; fi )
    DEPEND      = $(CC)  $(DEP_OPT)  $(MY_CFLAGS) $(CFLAGS) $(CPPFLAGS)
    DEPEND.d    = $(subst -g ,,$(DEPEND))
    COMPILE.c   = $(Q_compile)$(CC)  $(MY_CFLAGS) $(CFLAGS)   $(CPPFLAGS) -c
    COMPILE.cxx = $(Q_compile)$(CXX) $(MY_CFLAGS) $(CXXFLAGS) $(CPPFLAGS) -c
    LINK.c      = $(Q_link)$(CC)  $(MY_CFLAGS) $(CFLAGS)   $(CPPFLAGS) $(LDFLAGS)
    LINK.cxx    = $(Q_link)$(CXX) $(MY_CFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
    .PHONY: all objs tags ctags clean distclean help show
    # Delete the default suffixes
    .SUFFIXES:
    all: $(PROGRAM)
    # Rules for creating dependency files (.d).
    #------------------------------------------
    %.d:%.c@echo -n $(dir $<) > $@@$(DEPEND.d) $< >> $@
    %.d:%.C@echo -n $(dir $<) > $@@$(DEPEND.d) $< >> $@
    %.d:%.cc@echo -n $(dir $<) > $@@$(DEPEND.d) $< >> $@
    %.d:%.cpp@echo -n $(dir $<) > $@@$(DEPEND.d) $< >> $@
    %.d:%.CPP@echo -n $(dir $<) > $@@$(DEPEND.d) $< >> $@
    %.d:%.c++@echo -n $(dir $<) > $@@$(DEPEND.d) $< >> $@
    %.d:%.cp@echo -n $(dir $<) > $@@$(DEPEND.d) $< >> $@
    %.d:%.cxx@echo -n $(dir $<) > $@@$(DEPEND.d) $< >> $@
    # Rules for generating object files (.o).
    #----------------------------------------
    objs:$(OBJS)
    %.o:%.c$(COMPILE.c) $< -o $@
    %.o:%.C$(COMPILE.cxx) $< -o $@
    %.o:%.cc$(COMPILE.cxx) $< -o $@
    %.o:%.cpp$(COMPILE.cxx) $< -o $@
    %.o:%.CPP$(COMPILE.cxx) $< -o $@
    %.o:%.c++$(COMPILE.cxx) $< -o $@
    %.o:%.cp$(COMPILE.cxx) $< -o $@
    %.o:%.cxx$(COMPILE.cxx) $< -o $@
    # Rules for generating the tags.
    #-------------------------------------
    tags: $(HEADERS) $(SOURCES)$(ETAGS) $(ETAGSFLAGS) $(HEADERS) $(SOURCES)
    ctags: $(HEADERS) $(SOURCES)$(CTAGS) $(CTAGSFLAGS) $(HEADERS) $(SOURCES)
    # Rules for generating the executable.
    #-------------------------------------
    $(PROGRAM):$(OBJS)
    ifeq ($(SRC_CXX),)              # C program$(LINK.c)   $(OBJS) $(MY_LIBS) -o $@@echo Type ./$@ to execute the program.
    else                            # C++ program$(LINK.cxx) $(OBJS) $(MY_LIBS) -o $@@echo Type ./$@ to execute the program.
    endif
    ifndef NODEP
    ifneq ($(DEPS),)sinclude $(DEPS)
    endif
    endif
    install:cp -f kf920.elf  /home/linux-138/kf920/rootfs/kfserver
    clean:$(Q_clean)$(RM) $(OBJS) $(PROGRAM) $(PROGRAM).exe
    distclean: clean$(Q_distclean)$(RM) $(DEPS) TAGS
    # Show help.
    help:@echo 'Generic Makefile for C/C++ Programs (gcmakefile) version 0.5'@echo 'Copyright (C) 2007, 2008 whyglinux <whyglinux@hotmail.com>'@echo@echo 'Usage: make [TARGET]'@echo 'TARGETS:'@echo '  all       (=make) compile and link.'@echo '  NODEP=yes make without generating dependencies.'@echo '  objs      compile only (no linking).'@echo '  tags      create tags for Emacs editor.'@echo '  ctags     create ctags for VI editor.'@echo '  clean     clean objects and the executable file.'@echo '  distclean clean objects, the executable and dependencies.'@echo '  show      show variables (for debug use only).'@echo '  help      print this message.'@echo@echo 'Report bugs to <whyglinux AT gmail DOT com>.'
    # Show variables (for debug use only.)
    show:@echo 'PROGRAM     :' $(PROGRAM)@echo 'SRCDIRS     :' $(SRCDIRS)@echo 'HEADERS     :' $(HEADERS)@echo 'SOURCES     :' $(SOURCES)@echo 'SRC_CXX     :' $(SRC_CXX)@echo 'OBJS        :' $(OBJS)@echo 'DEPS        :' $(DEPS)@echo 'DEPEND      :' $(DEPEND)@echo 'COMPILE.c   :' $(COMPILE.c)@echo 'COMPILE.cxx :' $(COMPILE.cxx)@echo 'link.c      :' $(LINK.c)@echo 'link.cxx    :' $(LINK.cxx)
    ## End of the Makefile ##  Suggestions are welcome  ## All rights reserved ##
    #############################################################################
  • launch.json
  • {// 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387"version": "0.2.0","configurations": [{"name": "(gdb) Launch","type": "cppdbg","request": "launch","program": "${workspaceFolder}/kfserver",    //这里因为我调试的是dstar算法,所以调试文件换成dstar"args": [],"stopAtEntry": false,"cwd": "${workspaceFolder}","environment": [],"externalConsole": true,"preLaunchTask": "build",               //重点,这个是模板没有的选项,须额外加入"MIMode": "gdb","setupCommands": [{"description": "Enable pretty-printing for gdb","text": "-enable-pretty-printing","ignoreFailures": true}]},{ "name": "(gdb) Attach","type": "cppdbg","request": "attach","program": "${workspaceFolder}/kfserver",            //这个改下"processId": "${command:pickProcess}","MIMode": "gdb","setupCommands": [{"description": "Enable pretty-printing for gdb","text": "-enable-pretty-printing","ignoreFailures": true}]},
    ]
    }
  • task.json
  • {"version": "2.0.0","tasks": [{"label": "build", //任务的名称,可以随便取"type": "shell","command": "make"  //make命令,必须是这个值}]
    }
    
  • 看完别人的 感觉自己的多low 不过问题是解决了 还是开心的
  • 编译器:GCC
  • Makefile和*.c文件放在一起(注意 图片多一个q,源码已经删除)
  • 局限性(.c 文件可以随便加,还没有包含.h文件,如果学会了就把.h文件也集成进去 这样就不用再修改 Makefile了 直接可以使用
    如下图

  • Makefile代码如下
  • ## Makefile
    ## Author LeeHJ
    #Find *.c
    files_c = $(wildcard *.c)
    #Change *.c to *.o
    files_o = $(patsubst %.c,%.o,$(files_c))
    #Depends, no modification will not recompile
    test:$(files_o)@gcc -o test $^
    %.o:%.c@gcc -c -o $@ $<
    #Clean *.o test
    clean:@rm *.o @rm test
    .PYONY: clean
  • 终端输入 make是编译
  • 终端输入 make clean 是清除编译好的文件
  • 运行

Makefile(直接可以使用)相关推荐

  1. makefile学习(转载)

    该篇文章为转载,是对原作者系列文章的总汇加上标注. 支持原创,请移步陈浩大神博客: http://blog.csdn.net/haoel/article/details/2886 makefile很重 ...

  2. Makefile所有内嵌函数

    一.文本处理函数 以下是GNU make内嵌的文本(字符串)处理函数. 1       $(subst FROM,TO,TEXT) 函数名称:字符串替换函数-subst. 函数功能:把字串" ...

  3. Makefile语法基础介绍

    在Linux下,make是一个命令工具,是一个解释Makefile中指令的命令工具.make命令执行时,需要一个Makefile文件,以告诉make命令需要怎么样去编译和链接程序. make如何工作: ...

  4. 解析Makefile文件的构建规则

    2019独角兽企业重金招聘Python工程师标准>>> Makefile 编辑一个工程中的源文件不计其数,其按类型.功能.模块分别放在若干个目录中,makefile定义了一系列的规则 ...

  5. makefile 常用函数

    Linux下编译c/c++源码需要编写makefile文件,文章参看  http://blog.sina.com.cn/s/blog_4c4d6e74010009jr.html 一函数的调用语法 二字 ...

  6. 详解Makefile 函数的语法与使用

    使用函数: 在Makefile中可以使用函数来处理变量,从而让我们的命令或是规则更为的灵活和具有智能.make所支持的函数也不算很多,不过已经足够我们的操作了.函数调用后,函数的返回值可以当做变量来使 ...

  7. 5、Makefile基础知识汇总(转自陈皓总述)

    一.Makefile里有什么? Makefile里主要包含了五个东西:显式规则.隐晦规则.变量定义.文件指示和注释. 1.显式规则.显式规则说明了,如何生成一个或多的的目标文件.这是由Makefile ...

  8. linux Makefile引用与环境变量

    一.Makefile中的引用 一个makefile中引用另一个makefile,其写法与C语言include 类似. make 命令开始时,会搜寻 include 所包含的其它 Makefile,并把 ...

  9. Linux makefile 教程

    最近在学习Linux下的C编程,买了一本叫<Linux环境下的C编程指南>读到makefile就越看越迷糊,可能是我的理解能不行. 于是google到了以下这篇文章.通俗易懂.然后把它贴出 ...

最新文章

  1. 《帝企鹅日记》观后感
  2. 黑科技,教你用Python打电话,控制手机技术,快来学一下
  3. 显式欧拉法求解常微分方程
  4. 归档 OmniFocus 中已完成的任务到 印象笔记 Evernote
  5. 技术不是工程师能力的全部:闲看《因为所谓的代码性能不高而被离职的程序员》...
  6. python 打开 pip_python pip
  7. 英国正式启用首批5G服务
  8. 鸿蒙开发-实现页面跳转与页面返回
  9. 编程学习记录12:Oracle数据库的一些基本操作2,表相关操作,添加约束
  10. Selenium_WebDriver操作iFrame日历框和复选框_Java
  11. java使用缓冲区读取文件_在Java中使用Google的协议缓冲区
  12. day01_初识python
  13. java设置项目根目录 工作目录 working dictionary
  14. 获取并编译linux源码,linux – 从源代码编译软件:如何收集依赖项列表?
  15. Ubuntu 18.04下Couldn't connect to Docker daemon at http+docker://localunixsocket解决办法
  16. java反射机制历史_java的反射机制浅谈
  17. Android 权限清单大全
  18. STM32F1读取MLX90614ESF非接触式温度传感器
  19. 苹果授权登录(Sign in with Apple)-JAVA后端开发
  20. 图片分类的入门:二分类

热门文章

  1. 工作是老板的,生命是自己的。
  2. 《高新技术企业知识产权管理》阅读笔记
  3. oracle中用START WITH...CONNECT BY PRIOR子句实现递归查询
  4. python casefold lower_Python学习之路(2)——字符串方法casefold和lower的区别(Python3.5)-Go语言中文社区...
  5. 登录方式1:MySQL自带客户端
  6. explain分析执行计划
  7. 基于Xml 的IOC 容器-载入<bean>元素
  8. ActiveMQ入门-ActiveMQ环境搭建
  9. MybatisPlus入门之快速入门
  10. 设计模式:适配器模式(Adapter)