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/drivers/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 device drivers.
    2 #
    3 MAKE = exec make -$(MAKEFLAGS)
    4 
    5 usage:
    6         @echo "" >&2
    7         @echo "Makefile for all device drivers." >&2
    8         @echo "Usage:" >&2
    9         @echo " make build    # Compile all device drivers locally" >&2
   10         @echo " make image    # Compile drivers in boot image" >&2
   11         @echo " make clean    # Remove local compiler results" >&2
   12         @echo " make install  # Install drivers to /etc/drivers/" >&2
   13         @echo "                 (requires root privileges)" >&2
   14         @echo "" >&2
   15 
   16 build: all
   17 all install depend clean:
   18         cd ./libdriver && $(MAKE) $@
   19         cd ./libpci && $(MAKE) $@
   20         cd ./tty && $(MAKE) $@
   21         cd ./memory && $(MAKE) $@
   22         cd ./at_wini && $(MAKE) $@
   23         cd ./floppy && $(MAKE) $@
   24         cd ./printer && $(MAKE) $@
   25         cd ./rtl8139 && $(MAKE) $@
   26         cd ./fxp && $(MAKE) $@
   27         cd ./dpeth && $(MAKE) $@
   28         cd ./log && $(MAKE) $@
   29         cd ./bios_wini && $(MAKE) $@
   30         cd ./cmos && $(MAKE) $@
   31         cd ./random && $(MAKE) $@
   32         cd ./dp8390 && $(MAKE) $@
   33         cd ./sb16 && $(MAKE) $@
   34         cd ./lance && $(MAKE) $@
   35         cd ./rescue && $(MAKE) $@
   36 
   37 image:
   38         cd ./libdriver && $(MAKE) build
   39         cd ./libpci && $(MAKE) build
   40         cd ./tty && $(MAKE) build
   41         cd ./memory && $(MAKE) build
   42         cd ./at_wini && $(MAKE) build
   43         cd ./floppy && $(MAKE) build
   44         cd ./bios_wini && $(MAKE) build
   45         cd ./log && $(MAKE) build

Cache object: c9d546c4327dbe5bc6f4f0bdf1f44baf


[ 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.