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 / GETOPT / makefile < prev   
Makefile  |  2009-11-06  |  432b  |  23 lines

  1. ******************************************************************************
  2. *
  3. *    This is the makefile for OS9 getopt 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. getopt.r: getopt.c
  18.     cc -r $(CFLAGS) $*.c
  19.  
  20. *    End of makefile
  21.  
  22.  
  23.