summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-10-11 11:45:21 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-10-11 11:46:00 (EDT)
commitb2a9e263360c4a5ee5bf3eeb6b7b0314f90625c3 (patch)
treeb7fec8aacc93be22ce544ab1e748101e52b479ab
parent039034c42fc6d21cf84014b5916797838b4d108b (diff)
build: Add configure and build targets.
-rwxr-xr-xbuild15
1 files changed, 15 insertions, 0 deletions
diff --git a/build b/build
index 2a40656..99e8736 100755
--- a/build
+++ b/build
@@ -4,3 +4,18 @@ include ../source.mk
nop:
@:
+
+configure:
+ oh-autoconfigure -B obj -- \
+ --enable-tui \
+ --disable-gdbtk \
+ --with-system-readline \
+ --with-expat \
+ --without-python \
+ --with-system-gdbinit=/etc/gdb/gdbinit
+ touch $@
+
+build: configure
+ oh-autobuild -B obj
+ oh-autobuild -B obj -T check-gdb
+ touch $@