Files
sunnypilot/tools/lib/index_log/Makefile
Willem Melching 43f7fe178d not needed
2020-05-14 17:59:26 -07:00

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) $@