summaryrefslogtreecommitdiff
path: root/makeg
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-14 15:54:29 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-14 15:54:29 +0000
commit86fae01174ab672736557a4bb1b2188cf3cec064 (patch)
treedad83c22400ce37c5d996bde76dffdb95866e0e6 /makeg
R6.6 is the Xorg base-lineXORG-MAIN
Diffstat (limited to 'makeg')
-rw-r--r--makeg13
1 files changed, 13 insertions, 0 deletions
diff --git a/makeg b/makeg
new file mode 100644
index 0000000..38be8c9
--- /dev/null
+++ b/makeg
@@ -0,0 +1,13 @@
+#! /bin/sh
+# makeg - run "make" with options necessary to make a debuggable executable
+# $Xorg: makeg.sh,v 1.3 2000/08/17 19:41:52 cpqbld Exp $
+
+# set GDB=1 in your environment if using gdb on Solaris 2.
+
+make="${MAKE-make}"
+flags="CDEBUGFLAGS=-g CXXDEBUGFLAGS=-g"
+
+# gdb on Solaris needs the stabs included in the executable
+test "${GDB+yes}" = yes && flags="$flags -xs"
+
+exec "$make" $flags LDSTRIPFLAGS= ${1+"$@"}