#! /usr/bin/env sh

# keymaps - A rust crate which provides a standardized encoding for key codes
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: LGPL-3.0-or-later
#
# This file is part of the keymaps crate.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.txt>.

cd "$(dirname "$0")" || exit 1
ebnf2pdf make "./grammar.ebnf"
mv grammar.ebnf.pdf ./grammar.pdf

# vim: ft=sh
