home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 278.lha / GnuSed / src / Makefile < prev    next >
Makefile  |  1989-08-08  |  786b  |  44 lines

  1. #
  2. # Makefile for Gnu Sed (see public license at the top of sed.c)
  3. #
  4.  
  5. # add getopt.o and/or alloca.o if these are not present on your system
  6. OBJS = sed.o regex.o glob.o dir.o getopt.o alloca.o
  7.  
  8. SRC = sed.c regex.c glob.c regex.h Makefile
  9.  
  10. # on SysV systems, comment out the next line and comment out the one below it
  11. #CFLAGS = -g -DUSG -I.
  12. #CFLAGS = -g -I.
  13. #CFLAGS = -O -I.
  14.  
  15. CFLAGS=+L -DAMIGA
  16. # -n for Manx debugging
  17.  
  18. LNFLAGS=
  19. # -g for Manx debugging
  20.  
  21. # on unix machines:
  22. # LN=cc
  23. # on the amiga with Manx C:
  24. LN=ln
  25.  
  26. LIBS=dh0:usr/lib/heapmem.o32 -lc32
  27. BINDIR=dh0:usr/local/bin
  28.  
  29. sed:    $(OBJS)
  30.         $(LN) $(LNFLAGS) -o $@ $(OBJS) $(LIBS)
  31.  
  32. clean:
  33.         rm -f sed $(OBJS) core
  34.  
  35. dist:   sed.tar.Z
  36.  
  37. sed.tar.Z:
  38.         tar cvzf sed.tar.Z $(SRC)
  39.  
  40. install: sed
  41.         cp -f sed $(BINDIR)
  42.  
  43.  
  44.