Giter VIP home page Giter VIP logo

make's Introduction

What is this?

A tutorial of cool Makefile trick to deal with a messy source code!

The source tree

❯ tree
.
├── a
│   └── b
│       ├── c
│       │   └── d
│       │       ├── e
│       │       │   └── main.c
│       │       └── f
│       │           └── include_me.h
│       └── donothing.c
├── LICENSE
├── Makefile
└── README.md

6 directories, 6 files

Notice the following:

  • the main.c is burried somewhere deep.
  • the header file and other source files are also burried somewhere very deep!

Try this

❯ make
gcc -I./a/b/c/d/f/ -c a/b/c/d/e/main.c -o a/b/c/d/e/main.o
gcc -I./a/b/c/d/f/ -c a/b/donothing.c -o a/b/donothing.o
gcc -o main a/b/c/d/e/main.o a/b/donothing.o

make does all the hard work! Then try this:

❯ ./main 
hello, world!

The Trick

  • Find all .c file path.
  • Find all directories that have the .h files.
  • Provide the list to compiler (gcc) to generate main

What is what in the Makefile

gibberish description
PROJECT Final output, set to main.
SRC List of path of .c files.
OBJS List of .o files (generated from SRC).
INC List of directories that have the .h files.
INC List of directories that have the .h files.
%.o: %c .o file depends on .c file with same name. Eg: foo.o depends on foo.c
$^ All files in the dependency list.
$@ The target.
.PHONY Make targets that don't depend on anything.

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.