home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / hugs101.zip / hugs101sc.zip / hugsdist / src / Makefile.wat < prev    next >
Makefile  |  1995-03-02  |  978b  |  24 lines

  1. IOBJECTS    = hugs.obj builtin.obj machine.obj output.obj $(OBJECTS)
  2. OBJECTS        = storage.obj input.obj static.obj type.obj compiler.obj
  3. CC        = wcl386
  4. CFLAGS        = /l=dos4g /zp4 /5r /zq /oilr
  5. #CFLAGS        = /l=dos4g /oilr /zp4 /5r /zq
  6. #CFLAGS        = /l=win386/bt=windows
  7.  
  8. hugs.exe    : $(IOBJECTS)
  9.           wlink @wathugs.lnk
  10.  
  11. .c.obj        :
  12.           $(CC) -c $(CFLAGS) $<
  13.  
  14. hugs.obj    : prelude.h storage.h connect.h errors.h command.h machdep.c commonui.c hugs.c
  15. storage.obj    : prelude.h storage.h connect.h errors.h storage.c
  16. input.obj    : prelude.h storage.h connect.h errors.h parser.c command.h input.c
  17. static.obj    : prelude.h storage.h connect.h errors.h scc.c static.c
  18. type.obj    : prelude.h storage.h connect.h errors.h preds.c kind.c subst.c type.c
  19. output.obj    : prelude.h storage.h connect.h errors.h output.c
  20. compiler.obj    : prelude.h storage.h connect.h errors.h compiler.c
  21. machine.obj    : prelude.h storage.h connect.h errors.h machine.c
  22. builtin.obj    : prelude.h storage.h connect.h errors.h bignums.c builtin.c
  23.  
  24.