home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 626a.lha / GUISpell_v1.0 / Makefile < prev    next >
Makefile  |  1992-03-27  |  800b  |  27 lines

  1. #
  2. # Makefile for GUISpell under SAS/C v5.10b
  3. # Last update: Loren J. Rittle  Sun Nov 24 15:05:57 1991
  4. #
  5.  
  6. CCFLAGS = -. -b1 -cafmqrsu -C -fid -j170i -mat -q1w1e -r1r -O -v -Hinclude:all.sym
  7.  
  8. GUISpell: GUISpell.o MinRexx.o error.o libraries.o textclip.o
  9.     BLINK TO GUISpell LIB lib:lcr.lib FROM lib:cres.o \
  10.     GUISpell.o MinRexx.o error.o libraries.o textclip.o \
  11.     BATCH SMALLDATA SMALLCODE NODEBUG
  12.  
  13. GUISpell.o: GUISpell.c libraries.h error.h MinRexx.h textclip.h
  14.     LC $(CCFLAGS) -oGUISpell.o GUISpell.c
  15.  
  16. MinRexx.o: MinRexx.c MinRexx.h libraries.h
  17.     LC $(CCFLAGS) -oMinRexx.o MinRexx.c
  18.  
  19. error.o: error.c error.h
  20.     LC $(CCFLAGS) -oerror.o error.c
  21.  
  22. libraries.o: libraries.c libraries.h error.h
  23.     LC $(CCFLAGS) -olibraries.o libraries.c
  24.  
  25. textclip.o: textclip.c libraries.h
  26.     LC $(CCFLAGS) -otextclip.o textclip.c
  27.