home *** CD-ROM | disk | FTP | other *** search
/ CICA 1992 November / CICA_MS_Windows_CD-ROM_Walnut_Creek_November_1992.iso / win3 / programr / rx / makefile < prev    next >
Makefile  |  1991-09-30  |  400b  |  17 lines

  1. # If working with TC2.0: I was often in trouble with
  2. # register optimization (-r), so I don't use it anymore
  3.  
  4. CC=tcc
  5. CFLAGS=-ml -r-
  6.  
  7. # Uncomment the next CC-/CFLAGS-lines if working with MSC
  8. # packing structures (-Zp) is necessary!
  9. # Note: I tried it, but I haven't fully tested it with MSC (it so slow...)
  10.  
  11. # CC=cl
  12. # CFLAGS=-AL -Zp
  13.  
  14. rx.exe : rx.c
  15.   $(CC) $(CFLAGS) rx.c
  16.  
  17. # that's it