mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 23:08:26 +02:00
move source files to src/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3993 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
18ffcca679
commit
edc2fa5f2c
@ -16,15 +16,20 @@ TITLE:=BCM5325E/536x switch configuration utility
|
||||
DESCRIPTION:=Broadcom BCM5325E/536x switch configuration utility
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
mkdir -p $(PKG_BUILD_DIR)
|
||||
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
||||
endef
|
||||
|
||||
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
|
||||
|
||||
define Package/robocfg/install
|
||||
install -d -m0755 $(1)/sbin
|
||||
install -m0755 $(PKG_BUILD_DIR)/robocfg $(1)/sbin/
|
||||
$(RSTRIP) $(1)
|
||||
$(IPKG_BUILD) $(1) $(PACKAGE_DIR)
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,robocfg))
|
||||
|
12
package/robocfg/src/Makefile
Normal file
12
package/robocfg/src/Makefile
Normal file
@ -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
Block a user