You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
308 B
14 lines
308 B
#!/bin/bash
|
|
|
|
# (c) 2010 Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
|
# Released under the terms of the GNU General Public License v2 or v3
|
|
|
|
cd src/tqmoc
|
|
rm -f tqmoc_yacc.cpp
|
|
rm -f tqmoc_yacc.h
|
|
rm -f tqmoc_lex.cpp
|
|
lex -o tqmoc_lex.cpp tqmoc.l
|
|
yacc -o tqmoc_yacc.cpp --defines=tqmoc_yacc.h tqmoc.y
|
|
cd ../../
|
|
|