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. # Makefile for CMU mobile code scenario generation.
  41. #
  42. # $Header: /cvsroot/nsnam/ns-2/indep-utils/cmu-scen-gen/setdest/Makefile.in,v 1.12 2005/09/16 03:05:40 tomh Exp $
  43. # Top level hierarchy
  44. prefix = @prefix@
  45. # Pathname of directory to install the binary
  46. BINDEST = @prefix@/bin
  47. CCX = @CXX@
  48. CC = @CC@
  49. MKDEP = ../../../conf/mkdep
  50. # when including files from ns, we need to take care STL_NAMESPACE
  51. DEFINE = -Dstand_alone -DSTL_NAMESPACE=@STL_NAMESPACE@ -DCPP_NAMESPACE=@CPP_NAMESPACE@
  52. CFLAGS = @V_CCOPT@ 
  53. LDFLAGS = @V_STATIC@
  54. LIBS = @V_LIB@ -lm @LIBS@
  55. INSTALL = @INSTALL@
  56. all: setdest calcdest
  57. install: setdest calcdest
  58. $(INSTALL) -m 555 -o bin -g bin setdest $(DESTDIR)$(BINDEST)
  59. $(INSTALL) -m 555 -o bin -g bin calcdest $(DESTDIR)$(BINDEST)
  60. setdest: rng.o setdest.o
  61. $(CCX) -o setdest $@.o rng.o $(DEFINE) $(LDFLAGS) $(CFLAGS) 
  62. $(LIBS)
  63. calcdest: rng.o calcdest.o
  64. $(CCX) -o calcdest $@.o rng.o $(DEFINE) $(LDFLAGS) $(CFLAGS) 
  65. $(LIBS)
  66. rng.o:
  67. @rm -f $@
  68. $(CCX) -c $(DEFINE) -I../../.. -o $@ ../../../tools/rng.cc
  69. setbox: setbox.o
  70. $(CCX) -o setbox $@.o $(LDFLAGS) $(CFLAGS) $(LIBS)
  71. clean:
  72. @rm -f setdest setbox *.o *.core
  73. .SUFFIXES: .cc
  74. .cc.o:
  75. $(CCX) -c $(DEFINE) $(CFLAGS) -o $@ $*.cc