|
Revision 267, 0.7 KB
(checked in by root, 2 years ago)
|
|
Some fixes and 3.0.12
|
| Line | |
|---|
| 1 | ############################################################# |
|---|
| 2 | # |
|---|
| 3 | # This is the makefile for compiling all the hostap |
|---|
| 4 | # applications together in one package. |
|---|
| 5 | # |
|---|
| 6 | # |
|---|
| 7 | ############################################################# |
|---|
| 8 | |
|---|
| 9 | # There are no common versioning any more. |
|---|
| 10 | # HOSTAP_VERSION=0.3.7 |
|---|
| 11 | # HOSTAP_VERSION=0.4.11 |
|---|
| 12 | |
|---|
| 13 | HOSTAP_SITE=http://hostap.epitest.fi/releases/ |
|---|
| 14 | |
|---|
| 15 | HOSTAP_PKG_DIR=$(PACKAGES_DIR)/hostap-$(FLOPPYFW_VERSION) |
|---|
| 16 | |
|---|
| 17 | $(HOSTAP_PKG_DIR)/etc: |
|---|
| 18 | mkdir -p $(HOSTAP_PKG_DIR)/etc |
|---|
| 19 | |
|---|
| 20 | hostap: $(HOSTAP_PKG_DIR)/etc hostap-driver hostapd |
|---|
| 21 | (cd $(PACKAGES_DIR) ; sh mkpack hostap-$(FLOPPYFW_VERSION) ) |
|---|
| 22 | |
|---|
| 23 | # $(MODULES_BASE_DIR)/hostapmods.ffw |
|---|
| 24 | |
|---|
| 25 | hostap-clean: hostap-driver-clean |
|---|
| 26 | $(RM) -r $(HOSTAP_PKG_DIR) |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | hostap-dirclean: hostap-driver-dirclean |
|---|