mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
c5155aa623
Check in my host-side test framework. Minor tidying. git-svn-id: https://arducopter.googlecode.com/svn/trunk@635 f9c3cf11-9bcb-44bc-f272-b75c42450872
15 lines
207 B
Makefile
15 lines
207 B
Makefile
|
|
PROG := BinCommTest
|
|
SRCS := test.cpp ../APM_BinComm.cpp
|
|
OBJS := $(SRCS:.cpp=.o)
|
|
|
|
BinCommTest: $(OBJS)
|
|
c++ -g -o $@ $(OBJS)
|
|
|
|
.cpp.o:
|
|
@echo C++ $< -> $@
|
|
c++ -g -c -I. -o $@ $<
|
|
|
|
clean:
|
|
rm $(PROG) $(OBJS)
|