diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 | 
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ else  	INSTALL_TARGET_DIR = /usr/local/bin  endif -OUTPUTS = timerserver timerwp timerwaypoint timerstatus timerstop +OUTPUTS = timerserver timerstart timerwp timerwaypoint timerstatus timerstop  .PHONY: all clean install @@ -25,6 +25,9 @@ install: all  timerserver: timerserver.cpp  	g++ -std=c++11 -Wall -O2 -o $@ $^ +timerstart: timerserver +	ln -sf timerserver timerstart +  timerwp: timerserver  	ln -sf timerserver timerwp  | 
