Files
create/src/Base/Parser.sh
2025-10-14 10:00:04 -05:00

9 lines
271 B
Bash

# SPDX-License-Identifier: LGPL-2.1-or-later
(cd "$(dirname "$0")" && \
flex -oQuantity.lex.c Quantity.l && \
bison -oQuantity.tab.c Quantity.y && \
sed -i '1s|^|// clang-format off\n|' Quantity.tab.c && \
sed -i '1s|^|// clang-format off\n|' Quantity.lex.c \
)