Changeset 1608
- Timestamp:
- 07/12/06 02:50:35 (2 years ago)
- Location:
- branches/cross
- Files:
-
- 5 modified
- 1 copied
-
Makefile (modified) (2 diffs)
-
packages/expect/Makefile (modified) (1 diff)
-
packages/file/Makefile (modified) (3 diffs)
-
packages/tcl/Makefile (modified) (1 diff)
-
packages/tree (copied) (copied from branches/cross/packages/file)
-
packages/tree/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/cross/Makefile
r1606 r1608 231 231 tools: clfs-binutils-scpt clfs-gcc-scpt clfs-ncurses-scpt clfs-bash-scpt \ 232 232 clfs-bzip2-scpt clfs-coreutils-scpt clfs-diffutils-scpt clfs-findutils-scpt \ 233 clfs-gawk-scpt stop-hereclfs-gettext-scpt clfs-grep-scpt clfs-gzip-scpt clfs-make-scpt \233 clfs-gawk-scpt clfs-gettext-scpt clfs-grep-scpt clfs-gzip-scpt clfs-make-scpt \ 234 234 clfs-patch-scpt clfs-sed-scpt clfs-tar-scpt clfs-texinfo-scpt \ 235 235 clfs-util-linux-scpt clfs-wget-scpt … … 237 237 238 238 cross-pre-bash: createfiles clfs-tcl-scpt clfs-expect-scpt clfs-file-scpt \ 239 clfs-dejagnu-scpt clfs-tree-scpt clfs-perl-scpt ch-linux-headers \239 clfs-dejagnu-scpt clfs-tree-scpt stop-here clfs-perl-scpt ch-linux-headers \ 240 240 ch-glibc adjusting-toolchain ch-binutils ch-gcc ch-coreutils ch-iana-etc \ 241 241 ch-m4 ch-bison ch-ncurses ch-procps ch-sed ch-libtool ch-perl ch-readline \ -
branches/cross/packages/expect/Makefile
r1498 r1608 22 22 23 23 compile-stage1: 24 sed -i '/EXP_LIB_SPEC=/s@$${exec_prefix}/lib@$${libdir}@' configure 24 25 patch -Np1 -i ../$(PATCH1) 25 ifndef CROSS26 26 ./configure --prefix=$(WD) --with-tcl=$(WD)/lib \ 27 --with-tclinclude=$(WD)/include --with-x=no 28 else 29 CC="gcc $(64FLAGS)" ./configure --prefix=$(WD) --with-tcl=$(WD)/lib64 \ 30 --with-tclinclude=$(WD)/include --libdir=$(WD)/lib64 \ 31 --with-x=no 32 endif 27 --with-tclinclude=$(WD)/include 33 28 make $(PM) 34 29 make SCRIPTS="" install -
branches/cross/packages/file/Makefile
r1498 r1608 13 13 include $(ROOT)/scripts/functions 14 14 15 stage1: $(FILE) 16 $(std_build) 17 cp $(SRC)/$(FILE) $(LFSSRC) 18 19 compile-stage1: 20 ./configure --prefix=/tools 21 make $(PM) 22 make install 23 15 24 chroot: 16 25 chroot "$(MP)" $(chenv-post-bash) \ … … 19 28 stage2: Makefile $(FILE) 20 29 $(std_build) 21 cp $(SRC)/$(FILE) $(LFSSRC)22 30 23 31 compile-stage2: 24 ifndef CROSS25 32 ./configure --prefix=/usr 26 else27 CC="gcc $(64FLAGS)" ./configure --prefix=/usr \28 --libdir=/usr/lib6429 endif30 33 make $(PM) 31 34 make install … … 34 37 -rm -rf $(DIR) 35 38 36 .PHONY: c lean chroot compile-stage239 .PHONY: compile-stage1 clean chroot compile-stage2 -
branches/cross/packages/tcl/Makefile
r1499 r1608 18 18 19 19 compile-stage1: 20 cd unix ; cp configure configure.orig ; sed "s/relid'/relid/" configure.orig >configure 21 ifndef CROSS 20 cd unix ; sed -i "s/relid'/relid/" configure 22 21 cd unix ; ./configure --prefix=$(WD) 23 else24 cd unix ; sed -i 's@\$$(prefix)/lib@\$$(prefix)/lib64@g' Makefile.in25 cd unix ; CC="gcc $(64FLAGS)" ./configure --prefix=/tools --libdir=$(WD)/lib6426 endif27 22 cd unix ; make $(PM) 28 23 cd unix ; make install 29 24 cd unix ; make install-private-headers 30 ln -s tclsh8.4 $(WD)/bin/tclsh25 ln -sv tclsh8.4 $(WD)/bin/tclsh 31 26 32 27 clean: -
branches/cross/packages/tree/Makefile
r1498 r1608 1 # File Makefile1 # Tree Makefile 2 2 3 NM= file4 VRS= 4.173 NM= tree 4 VRS= 1.5.0 5 5 DIR= $(NM)-$(VRS) 6 6 7 FILE= $(DIR).t ar.gz7 FILE= $(DIR).tgz 8 8 URL-$(FILE)= $(HTTP)/$(NM)/$(FILE) 9 SHA-$(FILE)= e03710a3fcb95db6d0ee9cfcdf88c19a5e525ee49 SHA-$(FILE)= 201fc3a7d37db8c747ba1665370c14228a422015 10 10 11 11 # Targets … … 13 13 include $(ROOT)/scripts/functions 14 14 15 chroot: 16 chroot "$(MP)" $(chenv-post-bash) \ 17 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)' 18 19 stage2: Makefile $(FILE) 15 stage1: $(FILE) 20 16 $(std_build) 21 17 cp $(SRC)/$(FILE) $(LFSSRC) 22 18 23 compile-stage2: 24 ifndef CROSS 25 ./configure --prefix=/usr 26 else 27 CC="gcc $(64FLAGS)" ./configure --prefix=/usr \ 28 --libdir=/usr/lib64 29 endif 19 compile-stage1: 30 20 make $(PM) 31 21 make install … … 34 24 -rm -rf $(DIR) 35 25 36 .PHONY: clean chroot compile-stage 226 .PHONY: clean chroot compile-stage1
