home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / LIB / unix.zoo / makefile < prev    next >
Makefile  |  2009-11-06  |  1KB  |  38 lines

  1. #
  2. #  Makefile for OS-9/68020 UNIX library
  3. #
  4. #  Makefile Flags:
  5. #  DEBUG      print debugging informations
  6. #  STATIC     hide internal functions and data structures
  7. #  CATCH_ALL  catch all signals (incl. bus error, addr. error, CoProc..)
  8. #
  9. RDIR=RELS
  10. CFLAGS= -st=/h0 -dSTATIC -uCATCH_ALL -uDEBUG -k=2wf -ix
  11. #
  12. lib:    alarm.r ioctl.r ttyname.r isatty.r signal.r strchr.r strrchr.r\
  13.         rand.r strpbrk.r strtok.r strspn.r strcspn.r execl.r bcmp.r stat.r\
  14.         _secsince70.r perror.r
  15.         merge -b99 -z=lib_list >-/h0/lib/unix.l
  16.         attr /h0/lib/unix.l -pr
  17.         rdump -l /h0/lib/unix.l
  18.  
  19. #        copy /h0/lib/unix.l -rw=/h0/lib -b99
  20.  
  21. alarm.r:         alarm.c
  22. execl.r:         execl.c
  23. ioctl.r:         ioctl.c /dd/defs/unix/ioctl.h
  24. stat.r:          stat.c
  25. _secsince70.r:   _secsince70.c
  26. perror.r:        perror.c
  27. isatty.r:        isatty.c
  28. ttyname.r:       ttyname.c
  29. signal.r:        signal.c /dd/defs/unix/signal.h
  30. strchr.r:        strchr.c
  31. strrchr.r        strrchr.c
  32. strpbrk.r:       strpbrk.c
  33. strtok.r:        strtok.c
  34. strspn.r:        strspn.c
  35. strcspn.r:       strcspn.c
  36. rand.r:          rand.c
  37. bcmp.r:          bcmp.c
  38.