dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Add setup_libgpiod.sh setup_systools.sh
guowenxue
2021-01-08
2e9da8d42bd99ad46ce705e45f5c6e4488bd788d
[raspberrypi.git]
/
apue
/
3.UDP_dns
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
INST_PATH=/usr/bin
BIN_FILES=dns
all: clean
gcc *.c -o ${BIN_FILES}
clean:
rm -f ${BIN_FILES}
install:
@cp ${BIN_FILES} ${INST_PATH}