The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/servers/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # Makefile for all system servers.
    2 #
    3 MAKE = exec make -$(MAKEFLAGS)
    4 
    5 usage:
    6         @echo "" >&2
    7         @echo "Makefile for all system servers." >&2
    8         @echo "Usage:" >&2
    9         @echo " make build    # Compile all system servers locally" >&2
   10         @echo " make image    # Compile servers in boot image" >&2
   11         @echo " make clean    # Remove local compiler results" >&2
   12         @echo " make install  # Install servers to /etc/servers/" >&2
   13         @echo "                 (requires root privileges)" >&2
   14         @echo "" >&2
   15 
   16 build: all
   17 all install depend clean:
   18         cd ./pm && $(MAKE) $@
   19         cd ./fs && $(MAKE) $@
   20         cd ./rs && $(MAKE) $@
   21         cd ./ds && $(MAKE) $@
   22         cd ./is && $(MAKE) $@
   23         cd ./init && $(MAKE) $@
   24         cd ./inet && $(MAKE) $@
   25 
   26 image:
   27         cd ./pm && $(MAKE) EXTRA_OPTS=$(EXTRA_OPTS) build
   28         cd ./fs && $(MAKE) EXTRA_OPTS=$(EXTRA_OPTS) build
   29         cd ./rs && $(MAKE) EXTRA_OPTS=$(EXTRA_OPTS) build
   30         cd ./ds && $(MAKE) EXTRA_OPTS=$(EXTRA_OPTS) build
   31         cd ./init && $(MAKE) EXTRA_OPTS=$(EXTRA_OPTS) build
   32 
   33 

Cache object: e20547a6f22212a71f8a58461fd6358c


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.