Changeset 07114c98 for BOOK/Makefile
- Timestamp:
- Jul 1, 2006, 12:48:39 PM (18 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 95112ed
- Parents:
- 51f1397
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/Makefile
r51f1397 r07114c98 76 76 endef 77 77 78 lfs: toplevel render common78 clfs: toplevel render common 79 79 80 80 toplevel: … … 132 132 done 133 133 134 .PHONY: lfs toplevel common render nochunk nochunk_render pdf text validate trouble dump-commands download-list 134 target-list: 135 @printf "%-15s %-10s\n" "Architecture" "Build Type" ;\ 136 for arch in $(ARCH) ; do \ 137 MULTILIB=0 ;\ 138 PURE64=0 ;\ 139 TEST="`echo $$arch | grep -c -e '-64'`" ;\ 140 if [ "$$TEST" = "1" ]; then \ 141 PURE64=1 ;\ 142 else \ 143 TEST="`echo $$arch | grep -c -e '64'`" ;\ 144 if [ "$$TEST" = "1" ]; then \ 145 MULTILIB=1 ;\ 146 fi; \ 147 fi; \ 148 if [ "$$PURE64" = "1" ]; then \ 149 printf "%-15s %-10s\n" $$arch "Pure 64" ;\ 150 else \ 151 if [ "$$MULTILIB" = "1" ]; then \ 152 printf "%-15s %-10s\n" $$arch "Multilib" ;\ 153 else \ 154 printf "%-15s %-10s\n" $$arch "Default" ;\ 155 fi; \ 156 fi; \ 157 done 158 159 help: 160 @printf "%-25s %-20s\n" "Command" "Function" 161 @printf "%-25s %-20s\n" "make download-list" "Create download file lists" 162 @printf "%-25s %-20s\n" "make dump-commands" "Dump all the commands from the book" 163 @printf "%-25s %-20s\n" "make clfs" "Make the standard multilib page book" 164 @printf "%-25s %-20s\n" "make nochunks" "Make single html file book" 165 @printf "%-25s %-20s\n" "make pdf" "Make pdf copy of the book" 166 @printf "%-25s %-20s\n" "make target-list" "Get List of Architecture targets" 167 @printf "%-25s %-20s\n" "make test" "Make a text copy of the book" 168 @printf "%-25s %-20s\n" "make trouble" "Make a copy tha's easy to troubleshoot" 169 @printf "%-25s %-20s\n" "make validate" "Run book validation" 170 171 .PHONY: clfs toplevel common render nochunks nochunk_render pdf text validate trouble dump-commands download-list \ 172 target-list help
Note:
See TracChangeset
for help on using the changeset viewer.