blob: d8a71ba241c6c6ebd2421425b34dd1beae434057 [file] [log] [blame]
George Burgess IVdb48e0c2019-05-02 16:23:31 -07001#!/bin/bash -eu
2#
3# Runs the given C/C++ compile-ish command. On success, scrapes an object file
4# from that command line and touches it.
5
6"$@"
Elliott Hughes165a8c62019-07-08 15:03:19 -07007for arg in "$@"; do
8 if [[ "$arg" == *.o ]]; then
9 touch "$arg"
10 fi
11done