APUE course source code
guowenxue
18 hours ago ff970152123acde6084e9de1b3bad134922fc9c2
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}