Hey,
I just checked this project out and executed make install. It gave me errors:
$ make install
mkdir -p "/usr/local/lib/vernacular"
mkdir -p "/usr/local/bin"
for file in Mono.Cecil.dll Mono.Cecil.Mdb.dll Mono.Cecil.Pdb.dll Vernacular.Catalog.dll Vernacular.Catalog.dll.mdb Vernacular.Potato.dll Vernacular.Potato.dll.mdb Vernacular.exe Vernacular.exe.mdb; do \
install -m 0755 "Vernacular.Tool/bin/Debug/$file" "/usr/local/lib/vernacular"; \
done
install: Vernacular.Tool/bin/Debug/Mono.Cecil.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Mono.Cecil.Mdb.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Mono.Cecil.Pdb.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.Catalog.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.Catalog.dll.mdb: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.Potato.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.Potato.dll.mdb: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.exe: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.exe.mdb: No such file or directory
make: *** [install] Error 71
First executing make (which is basically make vernacular) and then executing make install made everything work as expected.
Maybe make install should depend on make vernacular in the Makefile?
Hey,
I just checked this project out and executed
make install. It gave me errors:First executing
make(which is basicallymake vernacular) and then executingmake installmade everything work as expected.Maybe
make installshould depend onmake vernacularin theMakefile?