mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
So this is going to be tricky/painful getting this parser fully operational. It's pretty hairy with various interdependencies and generated code. It's rather complicated how each sub dir depends on the previous one. Also, the parser subdir has dependencies on the helptag subdir, and vice-versa, so some hackery was needed to get that to work. Due to the wierd interdepencencies between helptag and parser, we disable parallel builds there. This is some really horrible code and design - not surprising since it dates to 1989. I think it should just be removed -- who can maintain or refactor this code? Also, dthelp_htag1 is now built in pass1/parser/, not in pass1/helptag/ as it used to be.
23 lines
444 B
Bash
Executable file
23 lines
444 B
Bash
Executable file
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
THEDIR="`pwd`"
|
|
cd "$srcdir"
|
|
DIE=0
|
|
|
|
libtoolize --force --automake
|
|
aclocal -I admin
|
|
autoconf -f
|
|
autoheader
|
|
automake --foreign --include-deps --add-missing
|
|
|
|
#if test -z "$*"; then
|
|
# echo "I am going to run ./configure with no arguments - if you wish "
|
|
# echo "to pass any to it, please specify them on the $0 command line."
|
|
#fi
|
|
#
|
|
#cd "$THEDIR"
|
|
#
|
|
#$srcdir/configure "$@"
|