- Home Page of ProjectGuideline.com ›
- Forums ›
- Get Help to do your B.E., and M.E., M.Tech., & M.S., Project in Ns2 ›
- Wimax package with ns_2
i will used wimax package with ns2.34
when i put make or make depend i have
an error
Makefile:201: *** commands commence before first target. Stop.
plz can u help me to slve this problem
or plz tell me what is the needed steps to do when i will try any example.tcl
This is a common error received during compiling (making) ns2 after some modification.
It means you are doing some copy-past operation in makefile. The copy-past operation will add some non standard end of line characters at end of those lines. The make command will fail if it will ‘see’ those strange end of line characters. So, you can remove those unwanted characters using a suitable text editor(lean it).
Or simply type those new lines in makefile using a simple editor like “vi”(lean it).
It will solve the problem.