aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-10-01 18:20:10 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-10-01 18:20:10 +0200
commit58775fb995cf2db921022f5f780355be6cfcab8f (patch)
treecbdca29dbf6bd6976471fb126e01a57ea8abd08b /Makefile
parent1bd10bee697167c0b3ef665221ef73ff9811caf6 (diff)
downloadmonitoring_custom-58775fb995cf2db921022f5f780355be6cfcab8f.tar.gz
add Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0474b60
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+INSTDIR=/usr/share/monitoring-plugins
+
+build:
+ @echo "nothing to do"
+
+install: build
+ @mkdir -p $(INSTDIR)
+ @cp check_* $(INSTDIR)
+