home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / gperf / makefile.st < prev    next >
Makefile  |  1993-07-30  |  2KB  |  68 lines

  1. # Copyright (C) 1989 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. GXX   = cg++
  17. DFLAGS= -Wall -DLO_CAL # -DTRACE
  18. OFLAGS= -O -fstrength-reduce -fsave-memoized \
  19.         -finline-functions -felide-constructors
  20. GXXFLAGS= $(DFLAGS) $(OFLAGS)
  21.  
  22. OBJS  = new.o options.o iterator.o main.o gen-perf.o key-list.o list-node.o \
  23.         hash-table.o bool-array.o read-line.o std-err.o version.o 
  24. .SUFFIXES: .cc
  25. .cc.o:
  26.     $(GXX) $(GXXFLAGS) -c  $<
  27.  
  28. all: gperf
  29.  
  30. gperf: $(OBJS) 
  31.     $(GXX) -o gperf $(OBJS) -G -v
  32.  
  33. clean: 
  34.     rm -f *.o core *~ #*# mon.out
  35.  
  36. realclean: clean
  37.     rm -f gperf
  38.  
  39. depend:
  40.     g++dep *.cc
  41. # dependencies
  42. # DO NOT DELETE THIS LINE -- g++dep uses it.
  43. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  44.  
  45. bool-array.o : bool-array.cc options.h std-err.h trace.h bool-array.h 
  46. gen-perf.o : gen-perf.cc options.h std-err.h trace.h gen-perf.h key-list.h \
  47.   list-node.h vectors.h read-line.h bool-array.h 
  48. hash-table.o : hash-table.cc hash-table.h list-node.h std-err.h vectors.h \
  49.   options.h trace.h 
  50. iterator.o : iterator.cc iterator.h trace.h 
  51. key-list.o : key-list.cc options.h std-err.h trace.h read-line.h \
  52.   hash-table.h list-node.h vectors.h key-list.h 
  53. list-node.o : list-node.cc options.h std-err.h trace.h list-node.h \
  54.   vectors.h 
  55. main.o : main.cc std-err.h options.h trace.h gen-perf.h key-list.h \
  56.   list-node.h vectors.h read-line.h bool-array.h 
  57. new.o : new.cc std-err.h trace.h 
  58. options.o : options.cc options.h std-err.h trace.h iterator.h 
  59. read-line.o : read-line.cc std-err.h read-line.h trace.h 
  60. std-err.o : std-err.cc std-err.h trace.h 
  61. version.o : version.cc 
  62.  
  63. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
  64.