# # Copyright 2004-2006 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # # Makefile for DTN2/sim # # # Make sure SRCDIR is set (.. by default) # ifeq ($(SRCDIR),) SRCDIR := .. BUILDDIR := .. endif SIM_SRCS := \ dtnsim.cc \ Connectivity.cc \ ConnCommand.cc \ Node.cc \ NodeCommand.cc \ Simulator.cc \ SimCommand.cc \ SimConvergenceLayer.cc \ SimLog.cc \ SimRegistration.cc \ Topology.cc \ TrAgent.cc \ SIM_OBJS := $(SIM_SRCS:.cc=.o) # # Default target is to build the simulator # all: dtnsim # # Include dtnsim in files to clean with make clean # BINFILES += dtnsim COMPONENT_LIBS := ../servlib/libdtnserv.a ../oasys/liboasys.a dtnsim: $(SIM_OBJS) $(COMPONENT_LIBS) $(CXX) $(CXXFLAGS) $(SIM_OBJS) $(COMPONENT_LIBS) \ -o $@ $(LDFLAGS) $(OASYS_LIBS) $(LIBS) # # Include the common rules # include ../Rules.make