home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume8 / cutup / part01 / Makefile < prev    next >
Makefile  |  1989-09-18  |  558b  |  26 lines

  1. # Makefile for cutup
  2.  
  3. # CFLAGS= -O                # non-XENIX systems can do this
  4. CFLAGS= -O -DM_TERMINFO
  5.  
  6. # LIBS= -lcurses -lx            # non-XENIX systems should do this
  7. LIBS= -ltinfo -lx
  8.  
  9. OBJS= cut.o scr.o fifo.o move.o initend.o comp.o usleep.o
  10. SRC= cut.c scr.c fifo.c move.c initend.c comp.c usleep.c
  11. INCLUDES= consts.h funcs.h macros.h types.h
  12. EXE= cutup
  13. LDFLAGS= -O
  14.  
  15. $(EXE): $(OBJS)
  16.     $(CC) $(LDFLAGS) $(OBJS) -o $(EXE) $(LIBS)
  17.  
  18. lint:
  19.     lint $(CFLAGS) $(SRC) > lint.out
  20.  
  21. clean:
  22.     rm -f $(OBJS) $(EXE) lint.out
  23.  
  24. shar:
  25.     xshar README Makefile $(SRC) $(INCLUDES) > $(EXE).shar
  26.