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. # Makefile for DEC trace parsing.
  40. # (ftp://ftp.digital.com/pub/DEC/traces/proxy/webtraces.html)
  41. # Taken from Alex Rousskov's originial code. 
  42. #
  43. # $Header: /cvsroot/nsnam/ns-2/indep-utils/webtrace-conv/dec/Makefile.in,v 1.7 2005/09/16 03:05:40 tomh Exp $
  44. # Top level hierarchy
  45. prefix  = @prefix@
  46. # Pathname of directory to install the binary
  47. BINDEST = @prefix@/bin
  48. CC = @CXX@
  49. INCLUDE = -I. @V_INCLUDES@
  50. CFLAGS = @V_CCOPT@ -DCPP_NAMESPACE=@CPP_NAMESPACE@
  51. LDFLAGS = @V_STATIC@
  52. LIBS = @V_LIB_TCL@ @V_LIB@ @LIBS@
  53. INSTALL = @INSTALL@
  54. SRC = proxytrace.cc formsquid.cc formtxt.cc my-endian.cc 
  55. proxytrace2any.cc tr-stat.cc
  56. OBJ = $(SRC:.cc=.o)
  57. all: dec-tr-stat
  58. install: dec-tr-stat
  59. $(INSTALL) -m 555 -o bin -g bin dec-tr-stat $(DESTDIR)$(BINDEST)
  60. dec-tr-stat: $(OBJ)
  61. $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJ) $(LIBS)
  62. .SUFFIXES: .cc
  63. .cc.o: 
  64. @rm -f $@
  65. $(CC) -c $(CFLAGS) $(INCLUDE) -o $@ $*.cc
  66. clean: 
  67. rm -f *.o *~ dec-tr-stat *core
  68. depend: $(SRC)
  69. $(MKDEP) $(CFLAGS) $(INCLUDES) $(SRC)