凌云实验室推出的ARM Linux物联网网关开发板IGKBoard(IoT Gateway Kit Board)项目源码
guowenxue
2023-06-28 fe3873a5423e587161941ba833bfbd266cc37f6a
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
#*********************************************************************************
#      Copyright:  (C) 2021 LingYun IoT System Studio
#                  All rights reserved.
#
#       Filename:  Makefile
#    Description:  This Makefile used to compile the hello module here
#                      
#        Version:  1.0.0(18/12/2021~)
#                  Author:  Guo Wenxue <guowenxue@gmail.com>
#      ChangeLog:  1, Release initial version on "18/12/2021 01:29:33 PM"
#                       
#********************************************************************************/
 
SRC := $(shell pwd)
 
obj-m += hello.o
 
all:
    @$(MAKE) -C $(KERNEL_SRC) M=$(SRC)
 
modules_install:
    $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
 
clean:
    @rm -f *.o *.mod* .*.cmd *.symvers *.order