-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile
152 lines (136 loc) · 5.68 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# Copyright 2018 Carnegie Mellon University. All Rights Reserved.
#
# NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE ENGINEERING
# INSTITUTE MATERIAL IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON
# UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
# AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR
# PURPOSE OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF
# THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF
# ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT
# INFRINGEMENT.
#
# Released under a GNU GPL 2.0-style license, please see license.txt or
# contact permission@sei.cmu.edu for full terms.
#
# [DISTRIBUTION STATEMENT A] This material has been approved for public
# release and unlimited distribution. Please see Copyright notice for
# non-US Government use and distribution. Carnegie Mellon® and CERT® are
# registered in the U.S. Patent and Trademark Office by Carnegie Mellon
# University.
#
# This Software includes and/or makes use of the following Third-Party
# Software subject to its own license:
# 1. wmediumd (https://github.com/bcopeland/wmediumd)
# Copyright 2011 cozybit Inc..
# 2. mac80211_hwsim (https://github.com/torvalds/linux/blob/master/drivers/net/wireless/mac80211_hwsim.c)
# Copyright 2008 Jouni Malinen <j@w1.fi>
# Copyright (c) 2011, Javier Lopez <jlopex@gmail.com>
#
# DM17-0952
##############################################
# OpenWrt Makefile for welled program
#
#
# Most of the variables used here are defined in
# the include directives below. We just need to
# specify a basic description of the package,
# where to build our program, where to find
# the source files, and where to install the
# compiled program on the router.
#
# Be very careful of spacing in this file.
# Indents should be tabs, not spaces, and
# there should be no trailing whitespace in
# lines that are not commented.
#
##############################################
include $(TOPDIR)/rules.mk
# Name and release number of this package
PKG_NAME:=welled
PKG_RELEASE:=2.4.5
# This specifies the directory where we're going to build the program.
# The root build directory, $(BUILD_DIR), is by default the build_mipsel
# directory in your OpenWrt SDK directory
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
# Specify package information for this program.
# The variables defined here should be self explanatory.
# Package description I had to change from DESCRIPTION.
# DEPENDS had to be added as well.
define Package/welled
SECTION:=utils
CATEGORY:=Utilities
TITLE:=welled -- Wireless Emulation Link Layer Exchange Daemon
Package/PKG_NAME/description:=\
Wireless Emulation \\\
Link Layer Exchange \\\
Daemon \\\
This program is the link layer \\\
exchange daemon for wireless emulation.
DEPENDS:=+libnl +glib2 +hostapd +kmod-mac80211-hwsim
MAINTAINER:=Adam Welle <arwelle@cert.org>
endef
# Specify what needs to be done to prepare for building the package.
# In our case, we need to copy the source files to the build directory.
# This is NOT the default. The default uses the PKG_SOURCE_URL and the
# PKG_SOURCE which is not defined here to download the source from the web.
# In order to just build a simple program that we have just written, it is
# much easier to do it this way.
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) ./src/*c $(PKG_BUILD_DIR)/
$(CP) ./src/*h $(PKG_BUILD_DIR)/
$(CP) ./src/Makefile $(PKG_BUILD_DIR)/
endef
# We do not need to define Build/Configure or Build/Compile directives
# The defaults are appropriate for compiling a simple program such as this one
define Build/Compile
CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
LDFLAGS="$(EXTRA_LDFLAGS) " \
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) \
CROSS="$(TARGET_CROSS)" \
CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CPPFLAGS) " \
ARCH="$(ARCH)" \
openwrt;
endef
# Specify where and how to install the program. We will copy multiple files to
# the router. The $(1) variable represents the root directory on the router
# running OpenWrt. The $(INSTALL_DIR) variable contains a command to prepare
# the install directory if it does not already exist. Likewise $(INSTALL_BIN)
# contains the command to copy the binary file from its current location (in our
# case the build directory) to the install directory. $(INSTALL_DATA) will copy
# files with permissions 644, while $(INSTALL_BIN) uses 755.
define Package/welled/install
$(INSTALL_DIR) $(1)/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/welled $(1)/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/gelled-ctrl $(1)/bin/
$(INSTALL_DIR) $(1)/etc/init.d/
$(INSTALL_BIN) ./scripts/init-welled-openwrt $(1)/etc/init.d/welled
$(INSTALL_DIR) $(1)/etc/config/
$(INSTALL_DATA) ./doc/wireless $(1)/etc/config/wireless-example
$(INSTALL_DATA) ./doc/network $(1)/etc/config/network-example
$(INSTALL_DATA) ./doc/dhcp $(1)/etc/config/dhcp-example
$(INSTALL_DATA) ./doc/firewall $(1)/etc/config/firewall-example
$(INSTALL_DATA) ./doc/welled.conf $(1)/etc/welled.conf-example
#$(INSTALL_DIR) $(1)/etc/modules.d/
#$(INSTALL_DATA) ./doc/mac80211-hwsim $(1)/etc/modules.d/
endef
# Configure the package after install
#define Package/welled/postinst
#endef
# Clean up prior to package removal
define Package/welled/prerm
#!/bin/sh
if [ -z "$${IPKG_INSTROOT}" ]; then
echo "Removing rc.d symlink for welled"
/etc/init.d/welled disable
fi
exit 0
exit 0
endef
# This line executes the necessary commands to compile our program.
# The above define directives specify all the information needed, but this
# line calls BuildPackage which in turn actually uses this information to
# build a package.
$(eval $(call BuildPackage,welled))