Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
intel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Feed
intel
Commits
73e0e2f9
Commit
73e0e2f9
authored
6 years ago
by
Kenneth Johansson
Browse files
Options
Downloads
Patches
Plain Diff
add iw_wave.
parent
9ef82c49
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
iw_wave/Makefile
+72
-0
72 additions, 0 deletions
iw_wave/Makefile
with
72 additions
and
0 deletions
iw_wave/Makefile
0 → 100755
+
72
−
0
View file @
73e0e2f9
#
# Openwrt Makefile for iw
#
# Simplify mode 1.0
#
#
#### Includes ###################################
include
$(TOPDIR)/rules.mk
include
$(INCLUDE_DIR)/kernel.mk
#### Package Info ###############################
PKG_NAME
:=
iw_wave
PKG_VERSION
:=
4.14
PKG_SOURCE_PROTO
:=
git
PKG_SOURCE_VERSION
:=
618071cc45785ec58dbef6d0768c74f25e8bdd38
PKG_BASE_NAME
:=
$(
PKG_NAME
)
PKG_SOURCE
:=
$(
PKG_BASE_NAME
)
-
$(
PKG_VERSION
)
.tar.bz2
#PKG_SOURCE_URL:=ssh://git@gts-chd.intel.com:29418/sw_wave/iwlwav-iw.git
PKG_SOURCE_URL
:=
git@dev.iopsys.eu:intel/
$(
PKG_NAME
)
.git
#PKG_MD5SUM:=40b89c61036add0c2dd1fc10767d3b5f
PKG_BUILD_DIR
:=
$(
BUILD_DIR
)
/
$(
PKG_BASE_NAME
)
-
$(
PKG_VERSION
)
PKG_DEFAULT_CUSTOM_SOURCE_DIR
:=
$(
shell
pwd
)
SBIN_FOLDER
:=
usr/sbin
PKG_BUILD_DEPENDS
:=
libnl3 PACKAGE_iw:iw PACKAGE_ltq-wlan-wave_5_x:ltq-wlan-wave_5_x
include
$(INCLUDE_DIR)/package.mk
-include
$(INCLUDE_DIR)/package-version-override.mk
define
Package/$(PKG_NAME)
SECTION
:=
net
CATEGORY
:=
Network
TITLE
:=
iw
for
Wave
DEPENDS
:=
+libnl3 +libnl
MENU
:=
1
endef
define
Package/$(PKG_NAME)/description
iw
for
Wave
endef
#### Directory Paths ############################
LIBNL_DIR
:=
$(
wildcard
$(
BUILD_DIR
)
/libnl-3
*
)
IFX_CFLAGS
+=
-I
$(
LIBNL_DIR
)
/include
IFX_LDFLAGS
+=
-L
$(
LIBNL_DIR
)
/lib/.libs
-lnl-3
#### Target Rules ###############################
define
Build/Compile
$(MAKE)
-C
$(PKG_BUILD_DIR)
clean
$(MAKE)
$(TARGET_CONFIGURE_OPTS)
-C
$(PKG_BUILD_DIR)
\
IFX_CFLAGS
=
"
$(
IFX_CFLAGS
)
"
IFX_LDFLAGS
=
"
$(
IFX_LDFLAGS
)
"
endef
define
Package/$(PKG_NAME)/install
$(INSTALL_DIR)
$(1)/$(SBIN_FOLDER)
$(INSTALL_BIN)
$(PKG_BUILD_DIR)/iw
$(1)/$(SBIN_FOLDER)/
endef
define
Build/Clean
if
[
-d
$(PKG_BUILD_DIR)
];
then
$(RM)
-r
$(PKG_BUILD_DIR)/ipkg-$(BOARD);
fi
endef
$(
eval
$(
call BuildPackage,
$(
PKG_NAME
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment