home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / man-1.0-src.tgz / tar.out / bsd / man / whereis / Makefile.in next >
Makefile  |  1996-09-28  |  507b  |  30 lines

  1. srcdir =    @srcdir@
  2. VPATH =        @srcdir@
  3.  
  4. prefix =    @prefix@
  5. exec_prefix =    @exec_prefix@
  6.  
  7. bindir =    $(exec_prefix)/bin
  8.  
  9. INSTALL =    @INSTALL@
  10. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  11. INSTALL_DATA =    @INSTALL_DATA@
  12.  
  13. CC =        @CC@
  14. DEFS =        @DEFS@
  15. LIBS =        @LIBS@
  16. CFLAGS =    @CFLAGS@
  17. LDFLAGS =    @LDFLAGS@
  18.  
  19. all:        whereis
  20.  
  21. whereis:    whereis.o
  22.         $(CC) $(LDFLAGS) -o whereis whereis.o
  23.  
  24. install:
  25.         $(INSTALL_PROGRAM) whereis $(bindir)/whereis
  26.         $(INSTALL_DATA) $(srcdir)/whereis.1 $(exec_prefix)/man/man1
  27.  
  28. clean:
  29.         rm -f whereis *.o *! *~
  30.