home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / libg++ / gperf / Makefile.in < prev    next >
Encoding:
Makefile  |  1993-12-12  |  1.4 KB  |  43 lines

  1. # Copyright (C) 1989, 1992, 1993 Free Software Foundation, Inc.
  2. # written by Douglas C. Schmidt (schmidt@ics.uci.edu)
  3. # This file is part of GNU GPERF.
  4. # GNU GPERF is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 1, or (at your option)
  7. # any later version.
  8. # GNU GPERF is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with GNU GPERF; see the file COPYING.  If not, write to
  14. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  15.  
  16. srcdir = .
  17.  
  18. #### package, host, target, and site dependent Makefile fragments come in here.
  19. ##
  20.  
  21. .PHONY: src_all
  22. src_all:
  23.     rootme=`pwd` ; export rootme ; cd src ; \
  24.         $(MAKE) $(FLAGS_TO_PASS) all
  25.  
  26. .PHONY: install
  27. install:
  28.     rootme=`pwd` ; export rootme ; cd src ; \
  29.         $(MAKE) $(FLAGS_TO_PASS) install
  30.     $(INSTALL_PROGRAM) $(srcdir)/gperf.1 $(man1dir)/gperf.1
  31.  
  32. distrib: force
  33.     cd ..; rm -f gperf.tar.Z; tar cvf gperf.tar gperf; compress gperf.tar;\
  34.            uuencode gperf.tar.Z < gperf.tar.Z > GSHAR
  35.  
  36. .PHONY: shar
  37. shar: force
  38.     cd ..; makekit -ngperf ./gperf ./gperf/* ./gperf/src/* ./gperf/tests/*
  39.