home *** CD-ROM | disk | FTP | other *** search
/ Amiga GigaPD 3 / Amiga_GigaPD_v3_3of3.iso / netbsd / contrib / ados / fv151.lzh / fv / makefile < prev    next >
Makefile  |  1993-05-25  |  311b  |  23 lines

  1. #
  2. # fv makefile
  3. #
  4. OBJS=main.o edit.o screen.o
  5. CFLAGS=
  6. #CFLAGS=
  7. CC=cc
  8.  
  9. fv: $(OBJS)
  10.     $(CC) $(CFLAGS) -o fv $(OBJS) -lcurses -ltermcap
  11.  
  12. main.o: main.c main.h
  13.     $(CC) $(CFLAGS) -c main.c
  14.  
  15. edit.o: edit.c main.h
  16.     $(CC) $(CFLAGS) -c edit.c
  17.  
  18. screen.o: screen.c main.h
  19.     $(CC) $(CFLAGS) -c screen.c
  20.  
  21. clean:
  22.     rm -f $(OBJS)
  23.