From 36497a3f6a9bf14ef6e6217474a49c0ad5621bf4 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Fri, 13 Jan 2006 12:44:02 +0100 Subject: [PATCH] Added Makefile --- Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bd94d06 --- /dev/null +++ b/Makefile @@ -0,0 +1,25 @@ +# +# ccollect +# Nico Schottelius, Fri Jan 13 12:13:08 CET 2006 +# + +INSTALL=install +CCOLLECT=ccollect.sh +LN=ln -sf + +prefix=/usr/packages/ccollect-0.2 +bindir=$(prefix)/bin +destination=$(bindir)/$(CCOLLECT) + +path_dir=/usr/local/bin +path_destination=$(path_dir)/$(CCOLLECT) + +all: + @echo "Nothing to make, make install." + +doc: + @asciidoc -n -o doc/ccollect.html doc/ccollect.text + +install: + $(INSTALL) -D -m 0755 -s $(CCOLLECT) $(destination) + $(LN) $(destination) $(path_destination)