home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / indent / makefile < prev    next >
Makefile  |  1999-06-10  |  1KB  |  41 lines

  1. # Makefile for GNU indent
  2. # Copyright (C) 1992, Free Software Foundation, Inc.
  3. #
  4. # This file is part of GNU indent.
  5. #
  6. # GNU indent is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10. # GNU indent is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14. # You should have received a copy of the GNU General Public License
  15. # along with GNU indent; see the file COPYING.  If not, write to
  16. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. prefix=/usr/local
  19. exec_prefix=${prefix}
  20.  
  21. all: makefile doall
  22.  
  23. doall:
  24.     @${MAKE} -f makefile all
  25.  
  26. indent: makefile doindent
  27.  
  28. doindent:
  29.     @${MAKE} -f makefile indent
  30.  
  31. .DEFAULT:
  32.     @if test \! -f makefile; then ${MAKE} makefile; fi
  33.     @${MAKE} -f makefile $@
  34.  
  35. makefile: makefile.in Makefile
  36.     @echo Running configure script to generate makefile
  37.     @echo
  38.     @sh configure --prefix=${prefix} --exec_prefix=${exec_prefix}
  39.