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 / CONFIG / makefile < prev    next >
Makefile  |  2009-11-06  |  559b  |  28 lines

  1. ******************************************************************************
  2. *
  3. *    This is the makefile for config compilation under OS9
  4. *
  5. ******************************************************************************
  6.  
  7. *    Default directories
  8. *    DDIR =
  9. *    SDIR =
  10. *    RDIR =
  11.  
  12. *    Compiler, assembler & linker flags
  13. CFLAGS = -t=/r0 -dos9 -dSIGNAL
  14. RFLAGS =
  15. LFLAGS = -t=/r0 -dos9 -dSIGNAL -l=/h0/lib/unix.l -l=/dd/lib/termlib.l \
  16.         -l=/dd/lib/signal.l
  17.  
  18. config.r: config.c
  19.     cc $(CFLAGS) -r config.c
  20.  
  21. config: config.r
  22.     cc $(LFLAGS) -f=config config.r
  23.  
  24.  
  25. *    End of makefile
  26.  
  27.  
  28.