You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
302 B
19 lines
302 B
7 years ago
|
CC = clang
|
||
|
CCFLAGS = -O3 -fPIC -DPANDA -I.
|
||
|
|
||
|
.PHONY: all
|
||
|
all: libpandasafety.so
|
||
|
|
||
|
libpandasafety.so: test.o
|
||
|
$(CC) -shared -o '$@' $^ -lm
|
||
|
|
||
|
test.o: test.c
|
||
|
@echo "[ CC ] $@"
|
||
|
$(CC) $(CCFLAGS) -MMD -c -I../../board -o '$@' '$<'
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -f libpandasafety.so test.o test.d
|
||
|
|
||
|
-include test.d
|