README.txt: add a link to the wiki page
[git-cheetah.git] / Makefile
blobba607311f82bd7eb21d85602b3076ee276f58c5d
1 # The default target of this Makefile is...
2 all::
4 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
6 ifeq ($(uname_S),Linux)
7 SUBDIR=nautilus
8 endif
9 ifeq ($(uname_S),Darwin)
10 SUBDIR=finder
11 endif
12 ifneq (,$(findstring MINGW,$(uname_S)))
13 SUBDIR=explorer
14 endif
16 TARGETS=all install uninstall install-user uninstall-user clean
18 $(TARGETS)::
19 $(MAKE) -C $(SUBDIR) $@