mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-24 01:22:05 +08:00
99c5800ea5
old-commit-hash: 29ac3da7b8
7 lines
160 B
Makefile
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) $@
|