|
| 1 | +#/* |
| 2 | +# * RPLIDAR SDK |
| 3 | +# * |
| 4 | +# * Copyright (c) 2009 - 2014 RoboPeak Team |
| 5 | +# * http://www.robopeak.com |
| 6 | +# * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. |
| 7 | +# * http://www.slamtec.com |
| 8 | +# * |
| 9 | +# */ |
| 10 | +#/* |
| 11 | +# * Redistribution and use in source and binary forms, with or without |
| 12 | +# * modification, are permitted provided that the following conditions are met: |
| 13 | +# * |
| 14 | +# * 1. Redistributions of source code must retain the above copyright notice, |
| 15 | +# * this list of conditions and the following disclaimer. |
| 16 | +# * |
| 17 | +# * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 18 | +# * this list of conditions and the following disclaimer in the documentation |
| 19 | +# * and/or other materials provided with the distribution. |
| 20 | +# * |
| 21 | +# * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 22 | +# * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 23 | +# * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 24 | +# * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR |
| 25 | +# * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 26 | +# * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 27 | +# * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 28 | +# * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 29 | +# * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 30 | +# * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, |
| 31 | +# * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | +# * |
| 33 | +# */ |
| 34 | +# |
| 35 | +HOME_TREE := ../ |
| 36 | + |
| 37 | +MODULE_NAME := $(notdir $(CURDIR)) |
| 38 | + |
| 39 | +include $(HOME_TREE)/mak_def.inc |
| 40 | + |
| 41 | +CXXSRC += src/sl_lidar_driver.cpp \ |
| 42 | + src/hal/thread.cpp\ |
| 43 | + src/sl_crc.cpp\ |
| 44 | + src/sl_serial_channel.cpp\ |
| 45 | + src/sl_tcp_channel.cpp\ |
| 46 | + src/sl_udp_channel.cpp |
| 47 | + |
| 48 | +C_INCLUDES += -I$(CURDIR)/include -I$(CURDIR)/src |
| 49 | + |
| 50 | +ifeq ($(BUILD_TARGET_PLATFORM),Linux) |
| 51 | +CXXSRC += src/arch/linux/net_serial.cpp \ |
| 52 | + src/arch/linux/net_socket.cpp \ |
| 53 | + src/arch/linux/timer.cpp |
| 54 | +endif |
| 55 | + |
| 56 | + |
| 57 | +ifeq ($(BUILD_TARGET_PLATFORM),Darwin) |
| 58 | +CXXSRC += src/arch/macOS/net_serial.cpp \ |
| 59 | + src/arch/macOS/net_socket.cpp \ |
| 60 | + src/arch/macOS/timer.cpp |
| 61 | +endif |
| 62 | + |
| 63 | +all: build_sdk |
| 64 | + |
| 65 | +include $(HOME_TREE)/mak_common.inc |
| 66 | + |
| 67 | +clean: clean_sdk |
0 commit comments