mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-27 01:38:37 -05:00
7feff06567
This can be used to measure code coverage from test scripts. Signed-hostap: Jouni Malinen <j@w1.fi>
12 lines
236 B
Makefile
12 lines
236 B
Makefile
all:
|
|
@echo Nothing to be made.
|
|
|
|
clean:
|
|
rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov
|
|
|
|
install:
|
|
if ls *.so >/dev/null 2>&1; then \
|
|
install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \
|
|
cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \
|
|
; fi
|