GithubHelp home page GithubHelp logo

makefile_test's Introduction

## gcc ##
#Commends sequence
1) compile object file
	gcc -c multiply.c
	gcc -c sub.c
	gcc -c add.c
	gcc -c right_triangle.c
	gcc -c main.c

2)link to be executable program
	gcc -o test main.o sub.o multiply.o add.o right_triangle.o -lm

## "makefile"##
#just use "make", find makefile automatically
#Commends sequence
1) use commend 'make' to complile, link & prodcut the executable files

2) use commend 'make clean' to clean all object, exe files

## "makefile_0x" ##
# show how to use unspecefic makefile name
1) use commend 'make -f makefile_0x' or 'make --file=makefile_0x' 
	to complile, link & prodcut the executable files
2) use commend 'make clean -f makefile_0X' or 'make clean --file=makefile_0x'  
	to clean all object, exe files

## "makefile_01" ##
1) test target and object file how to update with prerequisites change when building the project
2) use phony target '.PHONY'
3) use variable "objects" to replace the prerequisities 


## "makefile_02" ##
1) add '@' to hide shell commends
2) add 'include' to include other makefiles, here build a 'object.mk'
3) test hiden rule "$(CC) -c $(CPPFLAGS) $(CFLAGS)" for C program
4) add debug 'info'

makefile_test's People

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.