summaryrefslogtreecommitdiff
path: root/gdb/gdbtk/library/plugins/rhabout/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/gdbtk/library/plugins/rhabout/Makefile')
-rw-r--r--gdb/gdbtk/library/plugins/rhabout/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/gdbtk/library/plugins/rhabout/Makefile b/gdb/gdbtk/library/plugins/rhabout/Makefile
new file mode 100644
index 00000000000..4feced47561
--- /dev/null
+++ b/gdb/gdbtk/library/plugins/rhabout/Makefile
@@ -0,0 +1,9 @@
+TCL_CFLAGS = -I/home/fnasser/DEVO/insight-sourceware/src/tcl/generic
+TCL = -L/home/fnasser/BUILD/insight-sourceware/native/tcl/unix -ltcl8.0
+
+PRE=
+POS= ".so"
+
+rhabout: rhabout.c
+ gcc -fPIC $(TCL_CFLAGS) -I. -o rhabout.o -c rhabout.c
+ gcc -shared -o rhabout$(POS) rhabout.o $(TCL)