blob: df08a4968e661897acf3375643331de50e6c71f6 [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"$@"
7obj="$(echo "$@" | grep -oP '\S+\.o\b')"
8touch "${obj}"