mirror of
https://github.com/JHUAPL/kvspool.git
synced 2026-01-08 22:27:56 -05:00
cleanup / reorg
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -8,3 +8,4 @@ Makefile.in
|
|||||||
config.status
|
config.status
|
||||||
config
|
config
|
||||||
configure
|
configure
|
||||||
|
aclocal.m4
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
AM_CFLAGS = -fPIC
|
AM_CFLAGS = -fPIC -I./include
|
||||||
lib_LIBRARIES = libkvspool.a
|
lib_LIBRARIES = libkvspool.a
|
||||||
libkvspool_a_SOURCES = kvspool.c kvspoolw.c kvspoolr.c kvspool_attrition.c tpl.c
|
libkvspool_a_SOURCES = kvspool.c kvspoolw.c kvspoolr.c kvspool_attrition.c tpl.c
|
||||||
include_HEADERS = kvspool.h
|
include_HEADERS = kvspool.h
|
||||||
|
|||||||
3
README
3
README
@@ -1,5 +1,4 @@
|
|||||||
kvspool data streaming utilities
|
kvspool data streaming utilities
|
||||||
|
|
||||||
License: See LICENSE file
|
http://troydhanson.github.com/kvspool
|
||||||
See also: the TODO file
|
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ WriteMakefile(
|
|||||||
AUTHOR => 'A. U. Thor <adamstr1@>') : ()),
|
AUTHOR => 'A. U. Thor <adamstr1@>') : ()),
|
||||||
LIBS => ['-L.. -lkvspool'], # e.g., '-lm'
|
LIBS => ['-L.. -lkvspool'], # e.g., '-lm'
|
||||||
DEFINE => '', # e.g., '-DHAVE_SOMETHING'
|
DEFINE => '', # e.g., '-DHAVE_SOMETHING'
|
||||||
INC => '-I. -I..', # e.g., '-I. -I/usr/include/other'
|
INC => '-I. -I../include -I..', # e.g., '-I. -I/usr/include/other'
|
||||||
# Un-comment this if you add C files to link with later:
|
# Un-comment this if you add C files to link with later:
|
||||||
# OBJECT => '$(O_FILES)', # link all the C files too
|
# OBJECT => '$(O_FILES)', # link all the C files too
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
AM_CFLAGS = -I..
|
AM_CFLAGS = -I.. -I../include
|
||||||
LDADD = -L.. -lkvspool
|
LDADD = -L.. -lkvspool
|
||||||
bin_PROGRAMS = kvsp-spr kvsp-spw kvsp-tee kvsp-size kvsp-status \
|
bin_PROGRAMS = kvsp-spr kvsp-spw kvsp-tee kvsp-size kvsp-status \
|
||||||
kvsp-speed kvsp-mod kvsp-reset
|
kvsp-speed kvsp-mod kvsp-reset
|
||||||
|
|||||||
Reference in New Issue
Block a user