Skip to content

Commit

Permalink
Added makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gagath committed Jun 3, 2017
1 parent 1b783a2 commit aa26b93
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

SERVICE:=hms_spacestatus.service
SYSTEMD_DIR:=/lib/systemd/system/
SERVICE_PATH:=$(SYSTEMD_DIR)/$(SERVICE)

all:
@echo make install
@echo make uninstall

install:
cp systemd/$(SERVICE) $(SERVICE_PATH)

uninstall:
-systemctl disable $(SERVICE)
rm $(SERVICE_PATH)

0 comments on commit aa26b93

Please sign in to comment.