home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 182.lha / CShell_v3.0a / makefile < prev    next >
Makefile  |  1988-04-28  |  974b  |  48 lines

  1. ######################################################################
  2. #
  3. # Makefile to build Shell 3.00A
  4. # by Carlo Borreo & Cesare Dieni 30-Oct-88
  5. #
  6. ######################################################################
  7.  
  8. OBJS    = run.o main.o comm1.o comm2.o comm3.o execom.o set.o sub.o \
  9.       globals.o rawconsole.o
  10.  
  11. INCL    = shell.h
  12.  
  13. Shell   : Shell.syms $(OBJS)
  14.     ln  +q -m -o Shell $(OBJS) -la -lc
  15.  
  16. Shell.syms : $(INCL)
  17.     cc +HShell.syms shell.h
  18.  
  19. rawconsole.o : rawconsole.c $(INCL)
  20.     cc +IShell.syms rawconsole.c
  21.  
  22. run.o   : run.c $(INCL)
  23.     cc +IShell.syms run.c
  24.  
  25. main.o  : main.c $(INCL)
  26.     cc +IShell.syms main.c
  27.  
  28. comm1.o : comm1.c $(INCL)
  29.     cc +IShell.syms comm1.c
  30.  
  31. comm2.o : comm2.c $(INCL)
  32.     cc +IShell.syms comm2.c
  33.  
  34. comm3.o : comm3.c $(INCL)
  35.     cc +IShell.syms comm3.c
  36.  
  37. set.o   : set.c $(INCL)
  38.     cc +IShell.syms set.c
  39.  
  40. sub.o   : sub.c $(INCL)
  41.     cc +IShell.syms sub.c
  42.  
  43. globals.o : globals.c $(INCL)
  44.     cc +IShell.syms globals.c
  45.  
  46. execom.o : execom.c $(INCL)
  47.     cc +IShell.syms execom.c
  48.