dashboard
repositories
filestore
activity
search
login
main
/
apue
APUE Learning Example Source Code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
format c source code
guowenxue
2023-11-06
7856bf3569cc448fe3b360c3fca836593a0c0c7d
[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}