mirror of
https://github.com/wjwwood/serial.git
synced 2026-01-22 11:44:53 +08:00
12 lines
262 B
Makefile
12 lines
262 B
Makefile
CXX=clang++
|
|
CXXFLAGS=-g -I./include
|
|
|
|
test: tests/serial_tests.o src/serial.o src/impl/unix.o
|
|
$(CXX) -o test tests/serial_tests.o src/serial.o src/impl/unix.o
|
|
|
|
# ifdef ROS_ROOT
|
|
# include $(shell rospack find mk)/cmake.mk
|
|
# else
|
|
# include serial.makefile
|
|
# endif
|