LAPKT-dev / LAPKT-public

LAPKT public repository
GNU General Public License v3.0
39 stars 24 forks source link

make: makedepend: Command not found #46

Open bhomaidan1990 opened 2 years ago

bhomaidan1990 commented 2 years ago

Hi,

I'm facing this error while compiling the planner: make: makedepend: Command not found

Here is the full log:

belal@belal:/media/Planning/LAPKT-public(master)$ scons
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
g++ -o src/bit_array.o -c -O3 -Wall -std=c++0x -DNDEBUG -I/usr/local/include -Iinclude src/bit_array.cxx
g++ -o src/bit_set.o -c -O3 -Wall -std=c++0x -DNDEBUG -I/usr/local/include -Iinclude src/bit_set.cxx
g++ -o src/memory.o -c -O3 -Wall -std=c++0x -DNDEBUG -I/usr/local/include -Iinclude src/memory.cxx
ar rc libaptk.a src/bit_array.o src/bit_set.o src/memory.o
ranlib libaptk.a
scons: done building targets.
belal@belal:/media/Planning/LAPKT-public(master)$ cd external/libff
belal@belal:/media/Planning/LAPKT-public/external/libff(master)$ make clean
rm -f *.o *.bak *~ *% core *_pure_p9_c0_400.o.warnings test_lib \
        \#*\#  scan-fct_pddl.tab.c scan-ops_pddl.tab.c scan-probname.tab.c lex.fct_pddl.c lex.ops_pddl.c 
belal@belal:/media/Planning/LAPKT-public/external/libff(master)$ make depend
makedepend -- main.c memory.c output.c parse.c expressions.c inst_pre.c inst_easy.c inst_hard.c inst_final.c relax.c search.c utility.c  libff.c memory.c output.c parse.c expressions.c inst_pre.c inst_easy.c inst_hard.c inst_final.c relax.c search.c utility.c scan-fct_pddl.tab.c scan-ops_pddl.tab.c scan-probname.tab.c lex.fct_pddl.c lex.ops_pddl.c  test_main.cxx
make: makedepend: Command not found
make: *** [Makefile:108: depend] Error 127

P.S: I have seen the Devel2 branch, in the readme file it is mentioned lapkt_run.py -h However, I didn't find that, but instead: lapkt_cmd.py -h which aligns with the name of the script here.