#!/bin/sh
# Remove compiled object files from vendored MicroTeX sources
find src/MicroTeX -name "*.o" -delete 2>/dev/null
rm -f src/*.o src/*.so src/*.dll
# src/Makevars is generated by ./configure from src/Makevars.in; drop it
# so a re-install regenerates it against the current environment.
rm -f src/Makevars
