dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update appweb build shell script
guowenxue
2021-08-09
45535c46b444c4ae33ee1e974bb06abf7254a132
[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}