123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ################################################################################
- #
- # Copyright (c) 2015 Minoca Corp. All Rights Reserved
- #
- # Module Name:
- #
- # Net 802.11 Core
- #
- # Abstract:
- #
- # This module implements the IEEE 802.11 networking core. It manages
- # 802.11 wireless network traffic.
- #
- # Author:
- #
- # Chris Stevens 22-Oct-2015
- #
- # Environment:
- #
- # Kernel
- #
- ################################################################################
- BINARY = net80211.drv
- BINARYTYPE = so
- BINPLACE = bin
- OBJS = control.o \
- crypto.o \
- data.o \
- eapol.o \
- mgmt.o \
- net80211.o \
- netlink.o \
- DYNLIBS = $(BINROOT)/kernel \
- $(BINROOT)/netcore.drv \
- include $(SRCROOT)/os/minoca.mk
|