1all:
2	@echo Nothing to be made.
3
4clean:
5	rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov
6
7install:
8	if ls *.so >/dev/null 2>&1; then \
9		install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \
10		cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \
11	; fi
12