Changeset 6
- Timestamp:
- 04/14/10 15:36:11 (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r4 r6 219 219 # abstracted out. Its much more robust to include *.rul... -dannf 220 220 # 221 include $(TOPDIR)/make.d/bc.rul222 221 include $(TOPDIR)/make.d/ctcs.rul 223 222 include $(TOPDIR)/make.d/discover-data.rul -
trunk/initrd_source/initrd.rul
r5 r6 70 70 include $(INITRD_DIR)/make.d/sysvinit.rul 71 71 include $(INITRD_DIR)/make.d/udev.rul 72 73 ## BOEL BINARIES 74 # 75 include $(INITRD_DIR)/make.d/bc.rul 72 76 73 77 PHONY += build_dir … … 126 130 $(RSYNC_DIR).install \ 127 131 $(BITTORRENT_DIR).install \ 128 $(CX_FREEZE_BINARY) 132 $(CX_FREEZE_BINARY) \ 133 $(BC_DIR).build 129 134 130 135 -
trunk/initrd_source/make.d/bc.rul
r4 r6 5 5 6 6 BC_VERSION := 1.06 7 BC_DIR := $( SRC_DIR)/bc-$(BC_VERSION)7 BC_DIR := $(INITRD_SRC_DIR)/bc-$(BC_VERSION) 8 8 BC_TARBALL := bc-$(BC_VERSION).tar.gz 9 9 BC_URL := http://download.systemimager.org/pub/bc/$(BC_TARBALL) 10 10 BC_BINARY := $(BC_DIR)/bc/bc 11 11 12 ALL_SOURCE += $( SRC_DIR)/$(BC_TARBALL)12 ALL_SOURCE += $(INITRD_SRC_DIR)/$(BC_TARBALL) 13 13 14 14 … … 21 21 22 22 23 $(BC_DIR).unpack: $( TOPDIR)/make.d/bc.rul \24 $( SRC_DIR)/$(BC_TARBALL)25 cd $( SRC_DIR) && tar -xvzf $(BC_TARBALL)23 $(BC_DIR).unpack: $(INITRD_DIR)/make.d/bc.rul \ 24 $(INITRD_SRC_DIR)/$(BC_TARBALL) 25 cd $(INITRD_SRC_DIR) && tar -xvzf $(BC_TARBALL) 26 26 touch $@ 27 27 28 28 29 $( SRC_DIR)/$(BC_TARBALL):30 mkdir -p $( SRC_DIR)31 $(GETSOURCE) $(BC_URL) $( SRC_DIR)29 $(INITRD_SRC_DIR)/$(BC_TARBALL): 30 mkdir -p $(INITRD_SRC_DIR) 31 $(GETSOURCE) $(BC_URL) $(INITRD_SRC_DIR) 32 32 33 33
Note: See TracChangeset
for help on using the changeset viewer.