summaryrefslogtreecommitdiff
path: root/gdb-wrapper2/Makefile
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2017-12-26 19:36:21 +0000
committerPaweł Redman <pawel.redman@gmail.com>2017-12-26 19:40:50 +0000
commit4fbda5a9af95345504636d178e26b248791a2262 (patch)
treeaa20acbf33686b6843273b175e487ff397abee12 /gdb-wrapper2/Makefile
parent26d2028b4773aed05707faa7f525075b07da899c (diff)
Initial commit.
No history was lost as the scripts had no history in the first place.
Diffstat (limited to 'gdb-wrapper2/Makefile')
-rw-r--r--gdb-wrapper2/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb-wrapper2/Makefile b/gdb-wrapper2/Makefile
new file mode 100644
index 0000000..bba6e44
--- /dev/null
+++ b/gdb-wrapper2/Makefile
@@ -0,0 +1,10 @@
+test_program: test_program.c
+ cc test_program.c -o test_program $(CFLAGS) $(LDFLAGS)
+
+test: test.sh test_program
+ ./test.sh
+
+clean:
+ rm test_program
+
+.PHONY: clean