RaspberrPi project source code
guowenxue
12 hours ago 9ae5259c592406577656b8432c4aa2e86ea2a7f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
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}