home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / dumphunks-1.0-src.tgz / tar.out / contrib / dumphunks / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  770b  |  47 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.  
  12. SHELL =        /bin/sh
  13. CC =        @CC@
  14. RM =        rm
  15. DEFS =        @DEFS@
  16. LIBS =        @LIBS@
  17. CFLAGS =    @CFLAGS@
  18. LDFLAGS =    @LDFLAGS@
  19.  
  20. INCLUDES =    -I. -I$(srcdir)
  21. OUR_CFLAGS =    $(DEFS) $(INCLUDES) $(CFLAGS)
  22.  
  23. .c.o:
  24.         $(CC) -c $(OUR_CFLAGS) $<
  25.  
  26. all :        dumphunks
  27.  
  28. install :    dumphunks
  29.         $(INSTALL_PROGRAM) $? $(bindir)/dumphunks
  30. #
  31. #    Clean up the local directory.
  32. #
  33.  
  34. clean :
  35.         $(RM) -f *~ *! *.BAK nohup.out
  36.  
  37. clobber :    clean
  38.         $(RM) -f *.o config.status configure Makefile
  39.  
  40. #
  41. #    Normally the source distribution includes a few files that
  42. #    are created from other "pure source" files, like "configure"
  43. #    for example.
  44.  
  45. srcdist :
  46.     autoconf
  47.