mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 15:53:57 +08:00
10 lines
170 B
Makefile
10 lines
170 B
Makefile
CC := gcc
|
|
CXX := g++
|
|
|
|
index_log: index_log.cc
|
|
$(eval $@_TMP := $(shell mktemp))
|
|
$(CXX) -std=gnu++11 -o $($@_TMP) \
|
|
index_log.cc \
|
|
-lcapnp -lkj
|
|
mv $($@_TMP) $@
|