I am a new OMNeT++ user(6.0.3) running inet4.5
Please I am trying out the first part of the INET Tutorial for setting up two wireless hosts communicating with each other.
I am having an issue with the makefile generation
It keeps giving me this error
src/Makefile does not exist. Please use “make makefiles” to generate it
How do I generate the required makefiles because the makefile is already in the Project File tree
With the following code
all: checkmakefiles
cd src && $(MAKE)
clean: checkmakefiles
cd src && $(MAKE) clean
cleanall: checkmakefiles
cd src && $(MAKE) MODE=release clean
cd src && $(MAKE) MODE=debug clean
rm -f src/Makefile
makefiles:
cd src && opp_makemake -f –deep
checkmakefiles:
@if [ ! -f src/Makefile ]; then
echo;
echo ‘=======================================================================’;
echo ‘src/Makefile does not exist. Please use “make makefiles” to generate it!’;
echo ‘=======================================================================’;
echo;
exit 1;
fi
Please what am I missing?
KOBBY ASARE OBENG PEE223003 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.