dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberrPi project source code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Add generate deb package support
guowenxue
12 hours ago
9ae5259c592406577656b8432c4aa2e86ea2a7f6
[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}