I am getting the following message while setting up CUDD 2.5.1 using cygwin on the command prompt: sh ./setup.sh make: sh: command not found Makefile:224: recipe for target 'build' failed make *** [build] error 127
I have saved both the directories of CUDD nad cygwin in C:/(windows 7, 64-bit).
This is the build portion of the Makefile: build: sh ./setup.sh @+for dir in $(DIRS); do \ (cd $$dir; \ echo Making $$dir ...; \ make CC=$(CC) RANLIB=$(RANLIB) MFLAG= MNEMLIB= ICFLAGS="$(ICFLAGS)" XCFLAGS="$(XCFLAGS)" DDDEBUG="$(DDDEBUG)" MTRDEBUG="$(MTRDEBUG)" LDFLAGS="$(LDFLAGS)" PURE="$(PURE)" EXE="$(EXE)" )\ done
What should I do?