summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJiri Olsa <Jiri Olsa jolsa@redhat.com>2010-02-13 21:24:45 +0100
committerJiri Olsa <Jiri Olsa jolsa@redhat.com>2010-02-13 21:24:45 +0100
commitd2dc8169c4f2c97e4c6a92505cdb97243e22d9cc (patch)
treee811001eca9d2d4e7b4dffb6254e2d9aefcde841 /Makefile
parent7cfcb7e6a024d27e2bc9756d8a8595d7ecb50811 (diff)
downloadlatrace-d2dc8169c4f2c97e4c6a92505cdb97243e22d9cc.tar.gz
latrace-d2dc8169c4f2c97e4c6a92505cdb97243e22d9cc.tar.xz
latrace-d2dc8169c4f2c97e4c6a92505cdb97243e22d9cc.zip
controled config feature and disable auditing feature
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e1e713a..e076bf1 100644
--- a/Makefile
+++ b/Makefile
@@ -63,6 +63,15 @@ define install
fi
endef
+# install file quietly, arguments:
+# 1 - source
+# 2 - destination
+# 3 - directory to install to
+define link
+ @echo " LN " $(ROOTDIR)$3/$(notdir $2); $(RM) -f $(ROOTDIR)$3/$(notdir $2); \
+ ln -s $(ROOTDIR)$3/$(notdir $1) $(ROOTDIR)$3/$(notdir $2)
+endef
+
define remove
@echo " CLEAN " $1; $(RM) -rf $1
endef