Changeset 07114c98 for BOOK/Makefile


Ignore:
Timestamp:
Jul 1, 2006, 12:48:39 PM (18 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
95112ed
Parents:
51f1397
Message:

r4209@server: jim | 2006-07-01 12:46:18 -0700
Updated variables -

LFS_TARGET is now CLFS_TARGET
LFS_HOST is now CLFS_HOST
LFS_TARGET32 is now CLFS_TARGET32
LFS is now CLFS
/mnt/lfs is now /mnt/clfs


File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/Makefile

    r51f1397 r07114c98  
    7676endef
    7777
    78 lfs: toplevel render common
     78clfs: toplevel render common
    7979
    8080toplevel:
     
    132132        done
    133133
    134 .PHONY: lfs toplevel common render nochunk nochunk_render pdf text validate trouble dump-commands download-list
     134target-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
     159help:
     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.