dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberrPi project source code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Add RPi#1 pin map doc
guowenxue
2025-11-22
c87957cc22bf01c03635f23de15031f182c87bf8
[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}