Giter Site home page Giter Site logo

makefile's Introduction

    3 "Makefile" files are provided to compile your project in multiple and multi-level directories. One in current folder and the other two are placed in "obj/" and "src/". We note them as "./Makefile", "src/Makefile", "obj/Makefile" below.
    Your source file directory can be set as below if needed:
    src/
        Makefile
        a/
            Makefile
            src1.cpp
            src2.cpp
            b/
                Makefile
                src3.cpp
            c/
                Makefile
                src4.cpp
        b/
            Makefile
            d/
                ...
            f/
                ...
            ...
    src-subroutine/
            Makefile
            ...
    ...
    src5.cpp
where the "Makefile"s mentioned above were copies of "src/Makefile". Each "Makefile" will automatically find your "cpp" files-the post fix can be modified in "./Makefile"-in its current directory, and execute "make" in every subdirectory. Recursively, source files in subdirectory will be compiled. Note that source files can also be placed in current directory and you can simply remove folders: "src*".

    "*.o" will be placed in the folder "obj/", and can be linked to an excutable file in "./bin/" if "obj/Makefile" was invoked.
    
    You can customize you compile process by modify "./Makefile", e.g.:
        CC=g++
        SOURCE_POSTFIX=cpp
        ROOT_DIR=$(shell pwd)
        OPTIONS=-O2 -std=c++11 -I$(ROOT_DIR)/include ...
        BIN=a.out
these variables will be export to every Makefile in "src/" and "obj/"

    Some useful target:
        all:OBJ LINK run
        OBJ:$(SUBDIRS) $(CUR_OBJS)
        LINK:OBJ
            make -C obj
        run:LINK
            bin/$(BIN)
        clean:
            -rm -rf $(OBJS_DIR)/*.o; -rm -rf bin/$(BIN)

makefile's People

Contributors

zichaolong avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.