mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2024-11-20 09:01:44 +00:00
bd8827d169
The sdk release is from NXP offial web: https://www.nxp.com/products/wireless/wi-fi-plus-bluetooth/ 88w8997-wi-fi-dual-band-with-bluetooth-5-for-a-v-streaming-and-digital-tv:88W8997?tab=Design_Tools_Tab The release file is: PCIE-WLAN-UART-BT-8997-U16-X86-W16.68.10.p16-16.26.10.p16-C4X16640_V4-MGPL The sdk version is: W16.68.10.p16 Signed-off-by: Fugang Duan <fugang.duan@nxp.com>
51 lines
1.1 KiB
Makefile
Executable file
51 lines
1.1 KiB
Makefile
Executable file
# File : mlanevent/Makefile
|
|
#
|
|
# Copyright (C) 2008-2019, Marvell International Ltd. All Rights Reserved
|
|
|
|
# Path to the top directory of the wlan distribution
|
|
PATH_TO_TOP = ../..
|
|
|
|
# Determine how we should copy things to the install directory
|
|
ABSPATH := $(filter /%, $(INSTALLDIR))
|
|
RELPATH := $(filter-out /%, $(INSTALLDIR))
|
|
INSTALLPATH := $(ABSPATH)
|
|
ifeq ($(strip $(INSTALLPATH)),)
|
|
INSTALLPATH := $(PATH_TO_TOP)/$(RELPATH)
|
|
endif
|
|
|
|
# Override CFLAGS for application sources, remove __ kernel namespace defines
|
|
CFLAGS := $(filter-out -D__%, $(ccflags-y))
|
|
# remove KERNEL include dir
|
|
CFLAGS := $(filter-out -I$(KERNELDIR)%, $(CFLAGS))
|
|
|
|
|
|
#CFLAGS += -DAP22 -fshort-enums
|
|
CFLAGS += -Wall
|
|
#ECHO = @
|
|
LIBS = -lrt
|
|
|
|
.PHONY: default tags all
|
|
|
|
OBJECTS = mlanevent.o
|
|
HEADERS = mlanevent.h
|
|
|
|
TARGET = mlanevent.exe
|
|
|
|
build default: $(TARGET)
|
|
@cp -f $(TARGET) $(INSTALLPATH)
|
|
|
|
all : tags default
|
|
|
|
$(TARGET): $(OBJECTS) $(HEADERS)
|
|
$(ECHO)$(CC) $(LIBS) -o $@ $(OBJECTS)
|
|
|
|
%.o: %.c $(HEADERS)
|
|
$(ECHO)$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
tags:
|
|
ctags -R -f tags.txt
|
|
|
|
distclean clean:
|
|
$(ECHO)$(RM) $(OBJECTS) $(TARGET)
|
|
$(ECHO)$(RM) tags.txt
|
|
|