-
Notifications
You must be signed in to change notification settings - Fork 54
/
Makefile
95 lines (78 loc) · 1.81 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
ifdef ARM
CC := aarch64-linux-gnu-gcc
else
CC := gcc
endif
CFLAGS := -g -Wall
TARGET := pipe fifo socketpair uds tcp udp shm posixq ipc_bm
# Background color
GREEN := $(shell tput -Txterm setaf 2)
YELLOW := $(shell tput -Txterm setaf 3)
BLUE := $(shell tput -Txterm setaf 4)
MAGENTA := $(shell tput -Txterm setaf 5)
WHITE := $(shell tput -Txterm setaf 7)
RESET := $(shell tput -Txterm sgr0)
TARGET_MAX_CHAR_NUM := 20
## Show help
help:
@echo ''
@echo 'Usage:'
@echo ' ${YELLOW}make${RESET} ${GREEN}<target>${RESET} ${MAGENTA}[variable=value]${RESET}'
@echo ''
@echo 'Targets:'
@awk '/^[a-zA-Z\-\_0-9]+:/ { \
helpMessage = match(lastLine, /^## (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")-1); \
helpMessage = substr(lastLine, RSTART + 3, RLENGTH); \
printf " ${YELLOW}%-$(TARGET_MAX_CHAR_NUM)s${RESET} ${GREEN}%s${RESET}\n", helpCommand, helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
.PHONY: all
## Compile all
all: $(TARGET)
.PHONY: pipe
## Compile pipe
pipe: pipe.c
$(CC) $(CFLAGS) -o $@ $<
.PHONY: fifo
## Compile fifo
fifo: fifo.c
$(CC) $(CFLAGS) -o $@ $<
.PHONY: socketpair
## Compile socketpair
socketpair: socketpair.c
$(CC) $(CFLAGS) -o $@ $<
.PHONY: uds
## Compile unix domain socket
uds: uds.c
$(CC) $(CFLAGS) -o $@ $<
.PHONY: tcp
## Compile tcp
tcp: tcp.c
$(CC) $(CFLAGS) -o $@ $<
.PHONY: udp
## Compile udp
udp: udp.c
$(CC) $(CFLAGS) -o $@ $<
.PHONY: shm
## Compile shared memory
shm: shm.c
$(CC) $(CFLAGS) -o $@ $<
.PHONY: posixq
## Compile posix queue
posixq: posixq.c
$(CC) $(CFLAGS) -o $@ $< -lrt
.PHONY: ipc_bm
## Compile combined target
ipc_bm: ipc_bm.c
$(CC) $(CFLAGS) -o $@ $< -lrt
.PHONY: test
## Run benchmark tests
test:
./run_tests.sh
.PHONY: clean
## Clean build artifacts
clean:
rm $(TARGET)