Parent Directory | Revision Log
Tool to measure data transferred by a process.
1 | ## |
2 | # Makefile for transfcount. |
3 | # |
4 | |
5 | CFLAGS := -W -Wall -O3 |
6 | |
7 | transfcount.so: transfcount.c |
8 | $(CC) $(CFLAGS) -shared -fPIC -o $@ $< -ldl |
9 | |
10 | clean: |
11 | $(RM) transfcount.so |
12 | |
13 | install: transfcount.so |
14 | cp --verbose transfcount.so transfcount /usr/local/bin |
15 |
ViewVC Help | |
Powered by ViewVC 1.1.26 |