Forum Topic - how to invoke python scripts from QNX makefile ? :
   
how to invoke python scripts from QNX makefile ?  
how to invoke python scripts from makefile ? I am using python scripts for generating header file. Please advice.

Thanks,
Anand
Re: how to invoke python scripts from QNX makefile ?  
You can put any command you want in the makefile.   There's nothing special about invoking python, eg:


myheaders.h:   myheader.input
    python buildhdr.py <myheader.input >myheaders.h

Re: how to invoke python scripts from QNX makefile ?  
Thank you for the help.