I am trying to create a makefile that will create two script files (a client/server system) when 'make all' is run. I need to make it an executable script that has the python interpreter in the file so that they can just be run './server &' and then './client'.
I've tried pyinstaller but I don't just want an .exe file that runs the .py file, I need it to create a stand alone makefile like you can in c with:
gcc -o hellomake hellomake.c hellofunc.c -I
Basically I'm trying to find a way to do that line but with a .py file instead of .c