How to call a batch file in Make file?

Hii

        I wanna call a batch file from a make file. Doesn't work , what is the procedure to do this.? Any idea

thanks:eek:

Is it possible ?

(woi)

You agreed not to bump posts as part of your registration here.

Do you mean a shell script? Batch files imply a windows .bat

It's quite possible to have a makefile call a shell script.

output:input
        ./program.sh < input > output

'make output' will use ./program.sh to convert input into output.

note that the eight leading spaces are one tab.