APUE course source code
guowenxue
21 hours ago 2a5d865c945698903fb4986729d574bac98827d1
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}