Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ################################################################################
  2. #
  3. # Copyright (c) 2015 Minoca Corp.
  4. #
  5. # This file is licensed under the terms of the GNU General Public License
  6. # version 3. Alternative licensing terms are available. Contact
  7. # info@minocacorp.com for details. See the LICENSE file at the root of this
  8. # project for complete licensing information.
  9. #
  10. # Module Name:
  11. #
  12. # Net 802.11 Core
  13. #
  14. # Abstract:
  15. #
  16. # This module implements the IEEE 802.11 networking core. It manages
  17. # 802.11 wireless network traffic.
  18. #
  19. # Author:
  20. #
  21. # Chris Stevens 22-Oct-2015
  22. #
  23. # Environment:
  24. #
  25. # Kernel
  26. #
  27. ################################################################################
  28. BINARY = net80211.drv
  29. BINARYTYPE = so
  30. BINPLACE = bin
  31. OBJS = control.o \
  32. crypto.o \
  33. data.o \
  34. eapol.o \
  35. mgmt.o \
  36. net80211.o \
  37. netlink.o \
  38. DYNLIBS = $(BINROOT)/kernel \
  39. $(BINROOT)/netcore.drv \
  40. include $(SRCROOT)/os/minoca.mk