home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / STEVIE.ZIP / MAKEFILE.USG < prev    next >
Text File  |  1988-06-09  |  368b  |  23 lines

  1. #
  2. # Makefile for UNIX (System V)
  3. #
  4.  
  5. LIBS = ../regexp/regexp.a
  6. LDFLAGS=
  7.  
  8. CFLAGS = -I../regexp -O
  9.  
  10. MACH=    unix.o
  11.  
  12. OBJ=    main.o edit.o linefunc.o normal.o cmdline.o hexchars.o \
  13.     misccmds.o help.o ptrfunc.o search.o alloc.o \
  14.     mark.o screen.o fileio.o param.o $(MACH)
  15.  
  16. all : stevie
  17.  
  18. stevie : $(OBJ)
  19.     $(CC) $(OBJ) $(LIBS) -o stevie
  20.  
  21. clean :
  22.     rm $(OBJ)
  23.