dashboard
repositories
filestore
activity
search
login
main
/
apue
APUE Learning Example Source Code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
add socket argments sample
guowenxue
2023-11-06
14bbb45d375b611d19494874996e94aad64cf912
[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}