Makefile 790 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ################################################################################
  2. #
  3. # Copyright (c) 2015 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # Net 802.11 Core
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the IEEE 802.11 networking core. It manages
  12. # 802.11 wireless network traffic.
  13. #
  14. # Author:
  15. #
  16. # Chris Stevens 22-Oct-2015
  17. #
  18. # Environment:
  19. #
  20. # Kernel
  21. #
  22. ################################################################################
  23. BINARY = net80211.drv
  24. BINARYTYPE = so
  25. BINPLACE = bin
  26. OBJS = control.o \
  27. crypto.o \
  28. data.o \
  29. eapol.o \
  30. mgmt.o \
  31. net80211.o \
  32. netlink.o \
  33. DYNLIBS = $(BINROOT)/kernel \
  34. $(BINROOT)/netcore.drv \
  35. include $(SRCROOT)/os/minoca.mk