home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / msj / msjv4_6 / unix / unixbsc.arc / MAKEDEMO < prev    next >
Encoding:
Text File  |  1989-06-19  |  1.2 KB  |  45 lines

  1. #########################################################################
  2. #                                    #
  3. #    Make file for a demo program that interfaces to the         #
  4. #    Async TermIO device driver from Basic.                #
  5. #                                    #
  6. #########################################################################
  7. #                                    #
  8. #    Copyright (c) 1988    Boulder Software Group            #
  9. #                P.O. BOX 14200                #
  10. #                Boulder, CO   80308-4200        #
  11. #                                    #
  12. #                (303) 440-7868 (Voice)            #
  13. #                (303) 449-8612 (FAX)            #
  14. #                                                                       #
  15. #########################################################################
  16. #
  17. COMPILER        = bc
  18. COMPILER_FLAGS        = /O /E
  19. #
  20. #
  21. LIBRARIAN        = lib
  22. LIBRARIAN_FLAGS        =
  23. #
  24. #
  25. LINKER            = link
  26. LINKER_OPTIONS        =
  27. LINKER_LIBRARIES    = \basic\lib\qb.lib
  28. #
  29. #
  30. #########################################################################
  31. #
  32. #
  33. iodemo.obj:    iodemo.bas    termio.h
  34.         $(COMPILER)    $(COMPILER_FLAGS)    iodemo;
  35.  
  36. ioctl.obj:    ioctl.bas    termio.h
  37.         $(COMPILER)    $(COMPILER_FLAGS)    ioctl;
  38.  
  39. ioctl.lib:    ioctl.obj
  40.         $(LIBRARIAN)    $(LIBRARIAN_FLAGS)    ioctl -+ioctl.obj;
  41.  
  42. iodemo.exe:    iodemo.obj ioctl.obj ioctl.lib
  43.         $(LINKER)    $(LINKER_FLAGS)    iodemo,,,qb.lib ioctl.lib;
  44.  
  45.