home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / forum7.lzh / RICO / C / LIBSOURCE / EGETOPT / makefile < prev   
Makefile  |  2009-11-06  |  454b  |  23 lines

  1. ******************************************************************************
  2. *
  3. *    This is the makefile for OS9 egetopt library (use the -b option)
  4. *
  5. ******************************************************************************
  6.  
  7. *    Default directories
  8. *    DDIR =
  9. *    SDIR =
  10. *    RDIR =
  11.  
  12. *    Compiler, assembler & linker flags
  13. CFLAGS = -t=/r0 -dos9
  14. RFLAGS =
  15. LFLAGS = -t=/r0 -dos9
  16.  
  17. demo: egetopt.r demo.r
  18.     cc $(LFLAGS) -f=demo demo.r egetopt.r
  19.  
  20. *    End of makefile
  21.  
  22.  
  23.