forked from mochi-hpc/mochi-sdsdkv
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7bf9787
commit 88730f7
Showing
4 changed files
with
32 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,5 @@ README.md LICENSE autogen docs | |
|
||
SUBDIRS = \ | ||
src \ | ||
tests | ||
tests \ | ||
pkgconfig |
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 |
---|---|---|
|
@@ -11,7 +11,8 @@ AC_PREREQ([2.60]) | |
AC_INIT([sdsdkv], | ||
[0.1-alpha], | ||
[[email protected]], | ||
[sdsdkv]) | ||
[sdsdkv], | ||
[https://xgitlab.cels.anl.gov/sds/sdsdkv]) | ||
#dnl TODO(skg) add project URL. | ||
|
||
AC_CONFIG_MACRO_DIR([config]) | ||
|
@@ -114,6 +115,8 @@ AC_CONFIG_FILES([ | |
Makefile | ||
src/Makefile | ||
tests/Makefile | ||
pkgconfig/Makefile | ||
pkgconfig/sdsdkv.pc | ||
]) | ||
|
||
AC_OUTPUT | ||
|
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,13 @@ | ||
# | ||
# Copyright (c) 2018 Los Alamos National Security, LLC | ||
# All rights reserved. | ||
# | ||
# This file is part of the sdsdkv project. See the LICENSE file at the | ||
# top-level directory of this distribution. | ||
# | ||
|
||
pkgconfigdir = $(libdir)/pkgconfig | ||
pkgconfig_DATA = sdsdkv.pc | ||
|
||
# These are generated. | ||
MOSTLYCLEANFILES = $(pkgconfig_DATA) |
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,13 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@ | ||
|
||
Name: @PACKAGE_NAME@ | ||
Description: A distributed key-value service build from other Mochi services. | ||
Version: @PACKAGE_VERSION@ | ||
URL: @PACKAGE_URL@ | ||
Requires: sdskeyval ch-placement ssg | ||
Libs: -L${libdir} -lsdsdkv | ||
Libs.private: @SSG_LIBS@ @CH_PLACEMENT_LIBS@ @SDSKV_CLIENT_LIBS@ @SDSKV_SERVER_LIBS@ | ||
Cflags: -I${includedir} |