Make skb_total_counter and skb_refs_counter static
[madwifi/.git] / Makefile
1 #
2 # Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 # 1. Redistributions of source code must retain the above copyright
9 #    notice, this list of conditions and the following disclaimer,
10 #    without modification.
11 # 2. Redistributions in binary form must reproduce at minimum a disclaimer
12 #    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13 #    redistribution must be conditioned upon including a substantially
14 #    similar Disclaimer requirement for further binary redistribution.
15 # 3. Neither the names of the above-listed copyright holders nor the names
16 #    of any contributors may be used to endorse or promote products derived
17 #    from this software without specific prior written permission.
18 #
19 # Alternatively, this software may be distributed under the terms of the
20 # GNU General Public License ("GPL") version 2 as published by the Free
21 # Software Foundation.
22 #
23 # NO WARRANTY
24 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 # LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
27 # AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
28 # THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
29 # OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32 # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
34 # THE POSSIBILITY OF SUCH DAMAGES.
35 #
36 # $Id: //depot/sw/linuxsrc/src/802_11/madwifi/madwifi/Makefile $
37 #
38
39 #
40 # Makefile for the HAL-based Atheros driver.
41 #
42
43 obj := $(firstword $(obj) $(SUBDIRS) .)
44 TOP = $(obj)
45
46 include $(TOP)/Makefile.inc
47
48 obj-y := ath/ ath_hal/ ath_rate/ net80211/
49
50 ifdef CRYPTO_TESTING
51 obj-y += regression/
52 endif
53
54 .PHONY: all
55 all: modules tools
56
57 .PHONY: modules
58 modules: configcheck
59         $(MAKE) -C $(KERNELPATH) SUBDIRS=$(shell pwd) modules
60
61 # conflicts with the 'tools' subdirectory
62 .PHONY: tools
63 tools:
64         $(MAKE) -C $(TOOLS) all || exit 1
65
66 .PHONY: install
67 install: install-modules install-tools
68
69 .PHONY: install-modules
70 install-modules: modules
71         @# check if there are modules left from an old installation
72         @# might cause make to abort the build
73         sh scripts/find-madwifi-modules.sh -r $(KERNELRELEASE) $(DESTDIR)
74
75         for i in $(obj-y); do \
76                 $(MAKE) -C $$i install || exit 1; \
77         done
78 ifeq ($(DESTDIR),)
79         (export KMODPATH=$(KMODPATH); /sbin/depmod -ae $(KERNELRELEASE))
80 endif
81
82 .PHONY: install-tools
83 install-tools: tools
84         $(MAKE) -C $(TOOLS) install || exit 1
85
86 .PHONY: uninstall ininstall-modules
87 uninstall: uninstall-tools uninstall-modules
88 uninstall-modules:
89         sh scripts/find-madwifi-modules.sh -r $(KERNELRELEASE) $(DESTDIR)
90
91 .PHONY: list-modules find-modules
92 list-modules: find-modules
93 find-modules:
94         sh scripts/find-madwifi-modules.sh -l $(KERNELRELEASE)
95
96 .PHONY: uninstall-tools
97 uninstall-tools:
98         $(MAKE) -C $(TOOLS) uninstall
99
100 .PHONY: reinstall reinstall-tools reinstall-modules
101 reinstall: uninstall install
102 reinstall-tools: uninstall-tools install-tools
103 reinstall-modules: uninstall-modules install-modules
104
105 .PHONY: clean
106 clean:
107         for i in $(obj-y); do \
108                 $(MAKE) -C $$i clean; \
109         done
110         -$(MAKE) -C $(TOOLS) clean
111         rm -rf .tmp_versions
112         rm -f modules.order *.symvers Module.markers
113
114 .PHONY: info
115 info:
116         @echo "The following settings will be used for compilation:"
117         @echo "BUS          : $(BUS)"
118         @echo "KERNELRELEASE: $(KERNELRELEASE)"
119         @echo "KERNELPATH   : $(KERNELPATH)"
120         @echo "KERNELCONF   : $(KERNELCONF)"
121         @echo "KMODPATH     : $(KMODPATH)"
122         @echo "KMODSUF      : $(KMODSUF)"
123
124 .PHONY: sanitycheck
125 sanitycheck:
126         @echo -n "Checking requirements... "
127         
128         @# check if specified rate control is available
129         @if [ ! -d $(ATH_RATE) ]; then \
130             echo "FAILED"; \
131             echo "Selected rate control $(ATH_RATE) not available."; \
132             exit 1; \
133         fi
134         
135         @echo "ok."
136
137 .PHONY: release
138 release:
139         sh scripts/make-release.bash
140
141 .PHONY: unload 
142 unload:
143         bash scripts/madwifi-unload
144
145 .PHONY: configcheck
146 configcheck: sanitycheck
147         @echo -n "Checking kernel configuration... "
148         
149         @# check kernel version
150         @case $(KERNELRELEASE) in \
151             2.6.*) ;; \
152             [3-9].*) ;; \
153             *) echo "FAILED"; \
154                echo "Only kernel versions 2.6.13 and above are supported."; \
155                echo "You have $(KERNELRELEASE)."; \
156                exit 1 ;; \
157         esac
158         
159         @# check kernel configuration
160         @if [ -z "$(CONFIG_SYSCTL)" ]; then \
161             echo "FAILED"; \
162             echo "Please enable sysctl support."; \
163             exit 1; \
164         fi
165         
166 ifeq ($(strip $(BUS)),PCI)
167         @# check PCI support
168         @if [ -z "$(CONFIG_PCI)" ]; then \
169             echo "FAILED"; \
170             echo "Please enable PCI support."; \
171             exit 1; \
172         fi
173 endif
174         
175         @# check wireless extensions support is enabled
176         @if [ -z "$(CONFIG_NET_RADIO)$(CONFIG_WIRELESS_EXT)" ]; then \
177             echo "FAILED"; \
178             echo "Please enable wireless extensions."; \
179             exit 1; \
180         fi
181         
182         @# check crypto support is enabled
183         @if [ -z "$(CONFIG_CRYPTO)" ]; then \
184             echo "FAILED"; \
185             echo "Please enable crypto API."; \
186             exit 1; \
187         fi
188         
189         @echo "ok."