mirror of https://github.com/ArduPilot/ardupilot
15 lines
287 B
Makefile
15 lines
287 B
Makefile
|
|
PROG := BinCommTest
|
|
SRCS := test.cpp ../APM_BinComm.cpp
|
|
OBJS := $(SRCS:.cpp=.o)
|
|
|
|
BinCommTest: $(OBJS)
|
|
/Volumes/Data/Users/msmith/llvm/bin/clang++ -g -o $@ $(OBJS)
|
|
|
|
.cpp.o:
|
|
@echo C++ $< -> $@
|
|
/Volumes/Data/Users/msmith/llvm/bin/clang++ -g -c -I. -o $@ $<
|
|
|
|
clean:
|
|
rm $(PROG) $(OBJS)
|