-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added namespace command line utility "vmware-namespace-cmd".
- Loading branch information
Uttam Gupta
committed
Feb 11, 2016
1 parent
8334002
commit df1031d
Showing
8 changed files
with
1,325 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
################################################################################ | ||
### Copyright (C) 2016 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 | ||
################################################################################ | ||
|
||
bin_PROGRAMS = vmware-namespace-cmd | ||
|
||
vmware_namespace_cmd_SOURCES = | ||
vmware_namespace_cmd_SOURCES += namespacetool.c | ||
|
||
vmware_namespace_cmd_CPPFLAGS = | ||
vmware_namespace_cmd_CPPFLAGS += -DVMTOOLS_USE_GLIB | ||
vmware_namespace_cmd_CPPFLAGS += @GLIB2_CPPFLAGS@ | ||
vmware_namespace_cmd_CPPFLAGS += -I$(top_srcdir)/libvmtools | ||
|
||
vmware_namespace_cmd_LDADD = | ||
vmware_namespace_cmd_LDADD += @VMTOOLS_LIBS@ | ||
vmware_namespace_cmd_LDADD += @GLIB2_LIBS@ | ||
|
||
if HAVE_ICU | ||
vmware_namespace_cmd_LDADD += @ICU_LIBS@ | ||
vmware_namespace_cmd_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ | ||
$(LIBTOOLFLAGS) --mode=link $(CXX) \ | ||
$(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ | ||
$(LDFLAGS) -o $@ | ||
else | ||
vmware_namespace_cmd_LINK = $(LINK) | ||
endif |
Oops, something went wrong.