APUE course source code
guowenxue
2025-11-20 9c3a95404f261f7e151505ad8ada2baee6e8b90f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
APP_NAME?=iotd
 
PRJ_PATH=$(shell pwd)
 
DEB_FILES := $(wildcard *.deb)
DEB_DIRS  := $(patsubst %.deb,%,$(DEB_FILES))
 
all:
    @./build.sh ${APP_NAME}
 
clean:
    @./build.sh -c ${APP_NAME}
 
distclean: clean
    @rm -rf ${DEB_FILES} ${DEB_DIRS}