dashboard
repositories
filestore
activity
search
login
main
/
apue
APUE Learning Example Source Code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Add library and makefile sample code
guowenxue
2020-04-13
808fdc2c3745074a941fc73c9e6233d8e41cfdc0
[apue.git]
/
prj1_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}