dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberrPi project source code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update modules makefile
guowenxue
16 hours ago
14ef00efc0b93e6301d046ccc8b3e90f9ac60ca4
[raspberrypi.git]
/
project
/
deb
/
makefile
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}