User Tools

Site Tools


programming:make

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
programming:make [2021/02/04 14:34] peterprogramming:make [2021/02/04 16:34] (current) peter
Line 5: Line 5:
 ---- ----
  
-[[Programming:Make|Make]]+[[Programming:Make:Basic Make Example|Basic Make Example]]
  
-----+[[Programming:Make:Custom Rules|Custom Rules]]
  
-===== Basic Example ===== +[[Programming:Make:Fake Target|Fake Target]]
- +
-==== Create a C program ==== +
- +
-<file c hello.c> +
-#include <stdio.h> +
- +
-int main() +
-+
-  printf("Hello World"); +
-  return 0; +
-+
-</file> +
- +
----- +
- +
-==== Create a Makefile ==== +
- +
-<file bash Makefile> +
-hellohello.c +
-</file> +
- +
----- +
- +
-==== Run Make ==== +
- +
-<code bash> +
-make +
-</code> +
- +
-returns: +
- +
-<code bash> +
-cc     hello.c   -o hello +
-</code> +
- +
-<WRAP info> +
-**NOTE:**  This compiles the C program. +
-</WRAP>+
  
 ---- ----
  
  
programming/make.1612449253.txt.gz · Last modified: 2021/02/04 14:34 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki