Files
Vehicle Researcher 8a784e5123 openpilot v0.8.13
2022-02-23 16:38:14 -08:00

7 lines
160 B
Makefile

CC := gcc
vidindex: bitstream.c bitstream.h vidindex.c
$(eval $@_TMP := $(shell mktemp))
$(CC) -std=c99 bitstream.c vidindex.c -o $($@_TMP)
mv $($@_TMP) $@