1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#####################################################################################
#
# Makefile showing how to use libnecpp, the library
# version of nec++. This lets you incorporate NEC2
# antenna electromagnetic modeling into your own programs
#
# Copyright (C) 2004-2005 Timothy C.A. Molteno
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
all: test_cpp
test_static: test_nec.c
gcc --static -o test_static test_nec.c -lnecpp -lstdc++ -lm
test_nec: test_nec.c
gcc -o test_nec test_nec.c -lnecpp
#####################################################################################
#
# The target below shows how to compile and use the nec2++ codebase
# from within other C++ programs (GPL compatable of course!)
#
NECPP_SRC = ../src/c_ggrid.cpp ../src/matrix_algebra.cpp ../src/nec_ground.cpp \
../src/c_evlcom.cpp ../src/c_plot_card.cpp ../src/misc.cpp \
../src/nec_context.cpp ../src/nec_output.cpp ../src/c_geometry.cpp \
../src/nec_exception.cpp ../src/nec_radiation_pattern.cpp \
../src/nec_structure_currents.cpp
NECPP_OBJS = $(NECPP_SRC:.cpp=.o)
CPP_SRC = test_cpp.cpp
CPP_OBJS = $(CPP_SRC:.cpp=.o)
CXXFLAGS=-I ../src/ -O3
test_cpp: ${CPP_OBJS} ${NECPP_OBJS}
gcc -o test_cpp ${CPP_OBJS} ${NECPP_OBJS} -lstdc++ -lm
./test_cpp
cpp_clean:
rm -f ${CPP_OBJS} ${NECPP_OBJS}
|