]> arthur.barton.de Git - servertools.macosx.git/blob - Makefile
Log a note when unloading already configured launch daemon config
[servertools.macosx.git] / Makefile
1 #
2 # servertools.macosx Makefile
3 # Copyright (c)2008,2009 Barton IT-Consulting, Alexander Barton
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 # or FITNESS FOR A PARTICULAR PURPOSE.
12 # See the GNU General Public License for more details.
13 #
14
15 NAME = "servertools.macosx"
16
17 TOOLS = odbackup
18
19 all: $(TOOLS)
20
21 clean:
22
23 distclean: clean
24
25 maintainer-clean: distclean
26
27 install: all
28         @./install.sh $(TOOLS)
29
30 check: all
31
32 dist:
33         COPYFILE_DISABLE=true tar cvzf $(NAME)-`date +%Y%m%d`.tar.gz \
34          --exclude ".git*" --exclude "*.tar.gz" --exclude "*.tgz" \
35          --exclude "._*" --exclude "*~" --exclude "*.bak" \
36          -C .. `basename $$PWD`
37
38
39 distcheck: check dist
40
41 odbackup:
42
43 .PHONY: all clean distclean maintainer-clean install check dist distcheck \
44          $(TOOLS)