dashboard
repositories
filestore
activity
search
login
main
/
apue
APUE Learning Example Source Code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update TCP/UDP socket example code
guowenxue
2023-11-06
d241def81514078e2f3650218781bc4353c4d4bd
[apue.git]
/
ch2_socket
/
makefile
1
2
3
4
5
6
7
8
9
10
SRCFILES = $(wildcard *.c)
BINARIES=$(SRCFILES:%.c=%)
all: ${BINARIES}
%: %.c
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
clean:
rm -f ${BINARIES}