summaryrefslogtreecommitdiff
path: root/open-vm-tools/hgfsmounter/Makefile.am
blob: e48417e6c0e9f3c8ba2efce6bdd795a41fb1b270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
################################################################################
### Copyright (C) 2007-2015 VMware, Inc.  All rights reserved.
###
### This program is free software; you can redistribute it and/or modify
### it under the terms of version 2 of the GNU General Public License as
### published by the Free Software Foundation.
###
### This program is distributed in the hope that it will be useful,
### but WITHOUT ANY WARRANTY; without even the implied warranty of
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
### GNU General Public License for more details.
###
### You should have received a copy of the GNU General Public License
### along with this program; if not, write to the Free Software
### Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
################################################################################

sbin_PROGRAMS = mount.vmhgfs

mount_vmhgfs_LDADD =
mount_vmhgfs_LDADD += ../lib/string/libString.la
mount_vmhgfs_LDADD += ../lib/panicDefault/libPanicDefault.la
mount_vmhgfs_LDADD += ../lib/panic/libPanic.la
mount_vmhgfs_LDADD += ../lib/lock/libLock.la
mount_vmhgfs_LDADD += ../lib/misc/libMisc.la
mount_vmhgfs_LDADD += ../lib/stubs/libStubs.la

mount_vmhgfs_SOURCES =
mount_vmhgfs_SOURCES += hgfsmounter.c

if FREEBSD
install-exec-hook:
	mv $(DESTDIR)$(sbindir)/mount.vmhgfs \
		$(DESTDIR)$(sbindir)/mount_vmhgfs
	-$(MKDIR_P) $(DESTDIR)/sbin
	-$(LN_S) $(DESTDIR)$(sbindir)/mount_vmhgfs \
		$(DESTDIR)/sbin/mount_vmhgfs &> /dev/null
uninstall-hook:
	rm -f $(DESTDIR)$(sbindir)/mount_vmhgfs
else
install-exec-hook:
	-$(MKDIR_P) $(DESTDIR)/sbin
	-$(LN_S) $(DESTDIR)$(sbindir)/mount.vmhgfs \
		$(DESTDIR)/sbin/mount.vmhgfs &> /dev/null
uninstall-hook:
	rm -f $(DESTDIR)/sbin/mount.vmhgfs
endif !FREEBSD