-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
43 lines (34 loc) · 928 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Copyright (C) 2020 Sandy <[email protected]>
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=quectel-CM
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
define Package/quectel-cm
SECTION:=utils
CATEGORY:=Network
TITLE:=Quectel Connection networking program
MAINTAINER:=Sandy <[email protected]>
DEPENDS:=+libpthread +libdl
endef
define Package/quectel-cm/description
This package contains a utility that helps it connect to the network
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) ./src/* $(PKG_BUILD_DIR)/
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
CC="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS) -Wall"
endef
define Package/quectel-cm/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/quectel-CM $(1)/usr/bin/
endef
$(eval $(call BuildPackage,quectel-cm))