Makefile.in
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #  Copyright (c) 1999 by the University of Southern California
  2. #  All rights reserved.
  3. #  This program is free software; you can redistribute it and/or
  4. #  modify it under the terms of the GNU General Public License,
  5. #  version 2, as published by the Free Software Foundation.
  6. #
  7. #  This program is distributed in the hope that it will be useful,
  8. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. #  GNU General Public License for more details.
  11. #
  12. #  You should have received a copy of the GNU General Public License along
  13. #  with this program; if not, write to the Free Software Foundation, Inc.,
  14. #  59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  15. #
  16. #  The copyright of this module includes the following
  17. #  linking-with-specific-other-licenses addition:
  18. #
  19. #  In addition, as a special exception, the copyright holders of
  20. #  this module give you permission to combine (via static or
  21. #  dynamic linking) this module with free software programs or
  22. #  libraries that are released under the GNU LGPL and with code
  23. #  included in the standard release of ns-2 under the Apache 2.0
  24. #  license or under otherwise-compatible licenses with advertising
  25. #  requirements (or modified versions of such code, with unchanged
  26. #  license).  You may copy and distribute such a system following the
  27. #  terms of the GNU GPL for this module and the licenses of the
  28. #  other code concerned, provided that you include the source code of
  29. #  that other code when and as the GNU GPL requires distribution of
  30. #  source code.
  31. #
  32. #  Note that people who make modified versions of this module
  33. #  are not obligated to grant this special exception for their
  34. #  modified versions; it is their choice whether to do so.  The GNU
  35. #  General Public License gives permission to release a modified
  36. #  version without this exception; this exception also makes it
  37. #  possible to release a modified version which carries forward this
  38. #  exception.
  39. #
  40. # $Header: /cvsroot/nsnam/ns-2/indep-utils/webtrace-conv/epa/Makefile.in,v 1.6 2005/09/16 03:05:40 tomh Exp $
  41. # Top level hierarchy
  42. prefix  = @prefix@
  43. # Pathname of directory to install the binary
  44. BINDEST = @prefix@/bin
  45. CC = @CXX@
  46. MKDEP = ../../../conf/mkdep
  47. INCLUDE = -I. @V_INCLUDES@
  48. CFLAGS = @V_CCOPT@ -DCPP_NAMESPACE=@CPP_NAMESPACE@
  49. LDFLAGS = @V_STATIC@
  50. LIBS = @V_LIB_TCL@ @V_LIB@ @LIBS@
  51. INSTALL = @INSTALL@
  52. SRC = tr-stat.cc
  53. OBJ = $(SRC:.cc=.o)
  54. all: epa-tr-stat
  55. epa-tr-stat: $(OBJ)
  56. $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $(INCLUDE) $(OBJ) $(LIBS)
  57. install: epa-tr-stat
  58. $(INSTALL) -m 555 -o bin -g bin epa-tr-stat $(DESTDIR)$(BINDEST)
  59. .SUFFIXES: .cc
  60. .cc.o: 
  61. @rm -f $@
  62. $(CC) -c $(CFLAGS) $(INCLUDE) -o $@ $*.cc
  63. clean: 
  64. @rm -f *~ *.o epa-tr-stat *core
  65. depend: $(SRC)
  66. $(MKDEP) $(CFLAGS) $(INCLUDE) $(SRC)