9 lines
271 B
Bash
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 \
|
|
)
|