File: make_example.htm

package info (click to toggle)
eclipse-cdt 8.1.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 124,528 kB
  • sloc: java: 1,013,030; xml: 45,808; ansic: 5,171; cpp: 4,533; makefile: 1,323; sh: 99; asm: 42; f90: 22
file content (26 lines) | stat: -rw-r--r-- 615 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
	<meta http-equiv="Content-Language" content="en-us">
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<title>C++ Makefile example</title>
</head>
<body style="background-color:#ffffcc;">
<p role="main" style="color:#0066ff">Copy the script below and paste it into the <strong>makefile</strong> file in the Editor view:</p>

<pre>
all: hello

clean:
	-rm main.o hello.exe hello

hello: main.o
	g++ -g -o hello main.o

main.o: main.cpp
	g++ -c -g main.cpp

</pre>

</body>
</html>