tame/build-aux/gen-make

125 lines
3.3 KiB
Plaintext
Raw Normal View History

2018-05-04 11:17:47 -04:00
#!/bin/bash
#
# Generates Makefile containing dependencies for each package
#
# Copyright (C) 2014-2023 Ryan Specialty, LLC.
2018-05-04 11:17:47 -04:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
##
# windows machines may not have the tools to resolve a path, so let's do so
# ourselves (TODO: there's better (and more performant) ways of doing this than
# repeated string replacements); TODO: ./
resolv-path()
{
# no need to do anything if the string does not contain a parent dir reference
# (we use this convoluted string replacement check for woe32/64 to prevent
# additional spawns (e.g. sed) that would slow us down and because =~ is not
# properly supported in msys
[[ "$1" != "${1/..\//}"a ]] || {
echo "$1"
return
}
local path=
while read name; do
if [ "$name" == .. ]; then
[ -n "$path" ] || {
echo "warning: will not resolve $1" >&2
return 5
}
path="${path%/*}"
continue
fi
path="$path/$name"
done <<< "${1//\//$'\n'}"
# echo path without leading /
echo -n "${path:1}"
}
# rule for building
[ -z "$GEN_MAKE" ] && {
export GEN_MAKE="$( pwd )/$0"
exec "$GEN_MAKE" "$@"
}
until [ $# -eq 0 ]; do (
path="${1%%/}"
cd "$path" || exit $?
2018-05-04 11:17:47 -04:00
deps=$( find -maxdepth 1 -iname '*.dep' -o -iname '*.typelist' )
2018-05-04 11:17:47 -04:00
for dpath in $deps; do
# equivalent to basename command; use this since spawning processes on
# windoze is slow as shit (originally we did find -exec bashename)
d="${dpath##*/}"
sansext="${d%.*}"
2018-05-04 11:17:47 -04:00
# this might be derived from another file
# TODO: handle all cases, not just typelists!
if [ -f "$sansext.typelist" ]; then
echo "$path/$sansext.xml: $path/$sansext.typelist"
fi
# begin this file's dependencies
echo -n "$path/$sansext.xmlo: $path/$sansext.xml "
2018-05-04 11:17:47 -04:00
# only further process dependency files
if [[ ! $dpath =~ .dep$ ]]; then
echo
continue;
fi
2018-05-04 11:17:47 -04:00
# output deps
while read dep; do
ext=.xmlo
# a trailing `$' means "leave the path alone"; don't automatically
# add the extension in this case
if [[ "$dep" =~ \$$ ]]; then
dep="${dep:0:-1}"
ext=
fi
2018-05-04 11:17:47 -04:00
# if the first character is a slash, then it's relative to the project
# root---the resolution has already been done for us!
if [ "${dep:0:1}" == '/' ]; then
echo -n " ${dep:1}$ext"
2018-05-04 11:17:47 -04:00
continue
fi
echo -n ' '
resolv-path "$path/$dep$ext"
2018-05-04 11:17:47 -04:00
done < "$d"
echo
done
# recurse on every subdirectory
for p in */; do
[ "$p" == ./ -o "$p" == ../ ] && continue
Integrate new compilation scripts, remove cqueue and Makefile.2 This is a major step toward normalcy---removing the kluge of a build process that was causing so many issues. Rather than echoing all operations to a queue file before passing it off to dslc, the new build scripts in `bin/' are used to invoke tame normally, as needed. This solves all of the current issues with things not rebuilding when they should. And, as a bonus, tab completion on targets works. Sorry this took so long. There wasn't much motivation until we hired so many people that are suffering from this. This does a few major things, along with some miscellaneous others: - Invoke bin/tame directly; - Merge Makefile.2.in into Makefile.am; and - Fix up some targets. * build-aux/Makefile.2.in: Delete file. Mostly merged with Makefile.am. * build-aux/Makefile.am: Add a bunch of new targets and definitions from Makefile.2.in. Modify all that previously used .cqueue to now invoke `$(TAME)' directly. Remove miscellaneous targets for trying to proxy targets to Makefile.2. (saneout, _go): Remove definitions. (.NOTPARALLEL): Add to prevent parallel builds. (ui/program.expanded.xml)[.version.xml]: Remove dependency for now. (clean): Also clean generated PHP files. Follow symlinks to clean core. This is still incomplete (does not clean all rate table stuff). (suppliers.mk)[xmlo_cmd]: Remove. See `gen-make' and `gen-c1make'. (lvroot)[summary-html]: New dependency. (kill-tamed, tamed-die): New targets (former alias of latter) to kill tamed. * build-aux/gen-c1make: Generate `$(TAME)' invocation. * build-aux/gen-make: Likewise. Remove `xmlo_cmd' output. Ignore recursive `tame' symlink (this can be removed once we clean `rater/' up. * build-aux/m4/calcdsl.m4 (TAME): Update description to reflect that it should now be the path to `bin/tame'. Adjust `AC_CHECK_FILE' lines accordingly. (tame_needed_ver): Remove. We have been in the same repo as TAME itself for quite some time. Remove associated code. (AC_CONFIG_FILES): Remove `Makefile.2'. * src/current/src/com/lovullo/dslc/DslCompiler.java (_DslCompiler)[compile]: Perform validation prefore `compile' command rather than a separate `validate' step. Remove `rm'. [compileSrc]: Stop echoing command. This was only necessary because of the previous Makefile klugery; now Make echoes on its own correctly.
2018-10-08 23:27:02 -04:00
[ "$p" == node_modules/ -o "$p" == tame/ ] && continue
[ ! -d "$p" ] || ( cd "$OLDPWD" && "$GEN_MAKE" "$path/$p" ) || {
2018-05-04 11:17:47 -04:00
echo "fatal: failed to recurse on $( pwd )/$path/$p" >&2
exit 1
}
done
); shift; done