xref: /freebsd/contrib/wpa/Makefile (revision 71e72c9e91c4b8007a4292e09669e8b549c29e97)
1*71e72c9eSCy SchubertSUBDIRS=$(wildcard hostapd) $(wildcard wpa_supplicant)
2*71e72c9eSCy Schubert
3*71e72c9eSCy Schubertall:
4*71e72c9eSCy Schubert	for dir in $(SUBDIRS); do $(MAKE) -C $$dir; done
5*71e72c9eSCy Schubert
6*71e72c9eSCy Schubertclean distclean:
7*71e72c9eSCy Schubert	for dir in $(SUBDIRS); do $(MAKE) -C $$dir clean; done
8*71e72c9eSCy Schubert
9*71e72c9eSCy Schubertinstall:
10*71e72c9eSCy Schubert	for dir in $(SUBDIRS); do $(MAKE) -C $$dir install; done
11