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/contrib/dev/ral/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 #       $FreeBSD$
    2 
    3 FILES=  rt2561s.fw.uu rt2561.fw.uu rt2661.fw.uu rt2860.fw.uu
    4 
    5 rt2561s.fw.uu: microcode.h LICENSE
    6         (echo '#include <sys/types.h>'; \
    7          echo '#include <unistd.h>'; \
    8          cat microcode.h; \
    9          echo 'int main(void) { \
   10              write(1, rt2561s, sizeof(rt2561s)); return 0; \
   11          }') | ${CC} -o build -x c -
   12         (sed 's/^/# /' LICENSE; ./build | uuencode rt2561s.fw) > ${.TARGET}
   13 
   14 rt2561.fw.uu: microcode.h LICENSE
   15         (echo '#include <sys/types.h>'; \
   16          echo '#include <unistd.h>'; \
   17          cat microcode.h; \
   18          echo 'int main(void) { \
   19              write(1, rt2561, sizeof(rt2561)); return 0; \
   20          }') | ${CC} -o build -x c -
   21         (sed 's/^/# /' LICENSE; ./build | uuencode rt2561.fw) > ${.TARGET}
   22 
   23 rt2661.fw.uu: microcode.h LICENSE
   24         (echo '#include <sys/types.h>'; \
   25          echo '#include <unistd.h>'; \
   26          cat microcode.h; \
   27          echo 'int main(void) { \
   28              write(1, rt2661, sizeof(rt2661)); return 0; \
   29          }') | ${CC} -o build -x c -
   30         (sed 's/^/# /' LICENSE; ./build | uuencode rt2661.fw) > ${.TARGET}
   31 
   32 rt2860.fw.uu: microcode.h LICENSE
   33         (echo '#include <sys/types.h>'; \
   34          echo '#include <unistd.h>'; \
   35          cat microcode.h; \
   36          echo 'int main(void) { \
   37              write(1, rt2860, sizeof(rt2860)); return 0; \
   38          }') | ${CC} -o build -x c -
   39         (sed 's/^/# /' LICENSE; ./build | uuencode rt2860.fw) > ${.TARGET}
   40 
   41 clean:
   42         rm -f build build.c ${FILES}
   43 
   44 .include <bsd.prog.mk>

Cache object: dace395aea152e5162db54a0df0189f1


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