carbidecpp22devenv/configuration/org.eclipse.osgi/bundles/309/1/.cp/getting_started/make_example.htm
changeset 5 684bf18fdedf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/carbidecpp22devenv/configuration/org.eclipse.osgi/bundles/309/1/.cp/getting_started/make_example.htm	Fri Dec 04 10:01:33 2009 -0600
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
+<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 bgcolor="#ffffcc">
+<font color="#0066ff">Copy the script below and paste it into the <b>makefile</b> file in the Editor view:</font>
+
+<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>
\ No newline at end of file