home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 530b.lha / CSH_v5.15 / source.LZH / source / makefile < prev    next >
Encoding:
Makefile  |  1991-07-03  |  607 b   |  21 lines

  1. ######################################################################
  2. # Makefile to build Shell 5.10  under Aztec C 5.0d
  3. # make sure you use 5.0d or above, as setenv() has changed
  4. # NOTE: Our chars are UNSIGNED by default, and the executable's called zsh
  5.  
  6. OBJ=run.o main.o comm1.o comm2.o comm3.o execom.o set.o sub.o globals.o rawcon.o
  7. INC=shell.syms
  8.  
  9. FLAGS    = -wurp -ssr
  10. DEBUG    = -bs
  11. PRECOM    = -hiShell.syms
  12.  
  13. zsh:  makefile shell.syms $(OBJ)
  14.     ln +q -m -g -o zsh $(OBJ) -larpl -lc
  15.  
  16. shell.syms : shell.h proto.h
  17.     cc -pp -hoShell.syms shell.h -DAZTEC_C
  18.  
  19. $(OBJ): $(INC)
  20.     cc -pp $(DEBUG) $(FLAGS) $(PRECOM) $*.c
  21.