1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-21 20:30:23 +03:00
openwrt-xburst/obsolete-buildroot/sources/openwrt/ipkg/kmod-ppp-mppe-mppc/CONTROL/rules

33 lines
578 B
Plaintext
Raw Normal View History

#!/usr/bin/make -f
ifeq ($(strip $(TOPDIR)),)
TOPDIR := $(shell pwd)/../../../..
endif
PACKAGE := kmod-ppp-mppe-mppc
MY_INSTALL_DIR := /tmp/$(PACKAGE)
build:
install:
rm -rf $(MY_INSTALL_DIR)
install -m0755 -d $(MY_INSTALL_DIR)/lib/
bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \
modules/2.4.20/kernel/drivers/net/ppp_mppe_mppc.o \
mv -f \
$(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/drivers/net/ppp_mppe_mppc.o \
$(MY_INSTALL_DIR)/lib/modules/2.4.20/
rm -rf \
$(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel
clean: