mirror of https://github.com/hak5/openwrt.git
parent
e5c5a14618
commit
52f8d5bdce
|
@ -16,15 +16,20 @@ TITLE:=BCM5325E/536x switch configuration utility
|
||||||
DESCRIPTION:=Broadcom BCM5325E/536x switch configuration utility
|
DESCRIPTION:=Broadcom BCM5325E/536x switch configuration utility
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/Prepare
|
||||||
|
mkdir -p $(PKG_BUILD_DIR)
|
||||||
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/robocfg robocfg.c
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
all
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/robocfg/install
|
define Package/robocfg/install
|
||||||
install -d -m0755 $(1)/sbin
|
install -d -m0755 $(1)/sbin
|
||||||
install -m0755 $(PKG_BUILD_DIR)/robocfg $(1)/sbin/
|
install -m0755 $(PKG_BUILD_DIR)/robocfg $(1)/sbin/
|
||||||
$(RSTRIP) $(1)
|
|
||||||
$(IPKG_BUILD) $(1) $(PACKAGE_DIR)
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,robocfg))
|
$(eval $(call BuildPackage,robocfg))
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
|
all: robocfg
|
||||||
|
|
||||||
|
%.o: %.c
|
||||||
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
|
||||||
|
|
||||||
|
robocfg: robocfg.o
|
||||||
|
$(CC) -o $@ $^
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o robocfg
|
Loading…
Reference in New Issue