dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Add QT5.6.3 build shell script and patch file
guowenxue
2022-04-08
c7a69ad99ba1500722b3eb3dd8777893574a4be1
[raspberrypi.git]
/
apue
/
5.Comport
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
INST_PATH=/usr/bin
BIN_FILES=comport
all: clean
gcc *.c -o ${BIN_FILES}
clean:
rm -f ${BIN_FILES}
install:
@cp ${BIN_FILES} ${INST_PATH}