mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-29 18:58:21 -05:00
1057d78eb8
This code can be shared by both hostapd and wpa_supplicant and this is an initial step in getting the generic code moved to be under the src directories. Couple of generic files still remain under the hostapd directory due to direct dependencies to files there. Once the dependencies have been removed, they will also be moved to the src/ap directory to allow wpa_supplicant to be built without requiring anything from the hostapd directory.
10 lines
144 B
Makefile
10 lines
144 B
Makefile
all:
|
|
@echo Nothing to be made.
|
|
|
|
clean:
|
|
for d in $(SUBDIRS); do make -C $$d clean; done
|
|
rm -f *~ *.o *.d
|
|
|
|
install:
|
|
@echo Nothing to be made.
|