Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.application.tests/projects/hello/Makefile')
-rw-r--r--debug/org.eclipse.cdt.debug.application.tests/projects/hello/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.application.tests/projects/hello/Makefile b/debug/org.eclipse.cdt.debug.application.tests/projects/hello/Makefile
new file mode 100644
index 00000000000..942ade9b2da
--- /dev/null
+++ b/debug/org.eclipse.cdt.debug.application.tests/projects/hello/Makefile
@@ -0,0 +1,15 @@
+all: a.out
+
+CFLAGS=-I. -g3 -O2 -Djeff=2
+
+a.out: hello.o x.o
+ gcc -g -o a.out $?
+
+hello.o: hello.c somehdr.h
+ gcc -c $(CFLAGS) hello.c
+
+x.o: x.c
+ gcc -c $(CFLAGS) $<
+
+clean:
+ rm *.o *.out

Back to the top