blob: 427e7bb8e8a0c51ae0645426b4323cf04bf4463c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESTDIR=/opt/ioreplay
all:
$(MAKE) -C systemtap
$(MAKE) -C ioreplay
install:
$(MAKE) -C systemtap install
$(MAKE) -C ioreplay install
uninstall:
test ! -z $(DESTDIR) && test -d $(DESTDIR) && rm -Rfv $(DESTDIR) || exit 0
deinstall: uninstall
clean:
$(MAKE) -C ioreplay clean
$(MAKE) -C systemtap clean
astyle:
$(MAKE) -C ioreplay astyle
loc:
wc -l ./systemtap/src/*.stp ./ioreplay/src/*.{h,c} ./ioreplay/src/*/*.{h,c} | tail -n 1
doxygen:
doxygen ./docs/doxygen.conf
|