home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / forum5.lzh / SPRACHEN / C / GSHELL / Makefile < prev    next >
Makefile  |  1988-04-20  |  916b  |  48 lines

  1. RDIR          = RELS
  2.  
  3. CFLAGS        = -q -t=/r0/TMP 
  4.  
  5. ODIR          = /dd/GSHELL
  6.  
  7. EXTHDRS          =
  8.  
  9. HDRS          = selectfile.h
  10.  
  11. LDFLAGS          = -bg -i -q 
  12.  
  13. LIBS          = -l=/dd/lib/termlib.l  
  14.  
  15. LINKER          = cc
  16.  
  17.  
  18. PRINT          = pr
  19.  
  20.  
  21. Make.Date: gshell editor compiler assembler
  22.     @touch Make.Date
  23.  
  24. gshell: selectfile.r gshell.r
  25.         chd $(RDIR); $(LINKER) $(LDFLAGS) $@.r selectfile.r $(LIBS) -F=$(ODIR)/$@
  26.  
  27. editor: selectfile.r editor.r
  28.         chd $(RDIR); $(LINKER) $(LDFLAGS) $@.r selectfile.r $(LIBS) -F=$(ODIR)/$@
  29.  
  30. compiler: selectfile.r compiler.r
  31.         chd $(RDIR); $(LINKER) $(LDFLAGS) $@.r selectfile.r $(LIBS) -F=$(ODIR)/$@
  32.  
  33. assembler: selectfile.r assembler.r
  34.         chd $(RDIR); $(LINKER) $(LDFLAGS) $@.r selectfile.r $(LIBS) -F=$(ODIR)/$@
  35.  
  36.  
  37. ###
  38. gshell.r: selectfile.h gshell.c
  39.  
  40. selectfile.r: selectfile.h selectfile.c
  41.  
  42. editor.r: selectfile.h editor.c
  43.  
  44. compiler.r: selectfile.h compiler.c
  45.  
  46. assembler.r: selectfile.h assembler.c
  47.  
  48.