dashboard
repositories
filestore
activity
search
login
main
/
apue
APUE Learning Example Source Code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Merge branch 'master' of ssh://master.iot-yun.com:2280/apue
guowenxue
2019-06-26
448a7c81fb0d7cda298c7faad8e407aa4cb70315
[apue.git]
/
ch8_tlv
/
makefile
1
2
3
4
5
6
7
8
9
10
11
BINAME=tlv_sample
all:
gcc *.c -o ${BINAME}
clean:
rm -f ${BINAME}
run: all
./${BINAME}