Question

I currently have a Makefile rule thus:

start:
    ./start.sh

which starts a very simple server needed as part of the build process. I have another rule for stopping the server:

stop:
    kill `cat bin/server.PID`

here is the start.sh script:

#!/bin/bash
cd bin
python server.py &
echo $! > server.PID

NB server.py must be run from within the bin directory

I'd like to implement the functionality of start.sh within the start rule, I've tried numerous things but can't seem to get the PID.

Was it helpful?

Solution

I don't understand where you're getting stuck. What's wrong with

start:
    cd bin && { python server.py & echo $$! > server.PID; }

?

You can also make the pidfile a target and dependency:

start: server.PID

server.PID:
    cd bin && { python server.py & echo $$! > $@; }

stop: server.PID
    kill `cat $<` && rm $<

.PHONY: start stop
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top