Con Kolivas
11 years ago
5 changed files with 50 additions and 0 deletions
@ -1,4 +1,8 @@
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
lib_LTLIBRARIES = libckpool.la
|
||||
libckpool_la_SOURCES = libckpool.c
|
||||
|
||||
bin_PROGRAMS = ckpool
|
||||
ckpool_SOURCES = ckpool.c
|
||||
ckpool_LDADD = libckpool.la
|
||||
|
@ -0,0 +1,8 @@
|
||||
/*
|
||||
* Copyright 2011-2014 Con Kolivas |
||||
* |
||||
* This program is free software; you can redistribute it and/or modify it |
||||
* under the terms of the GNU General Public License as published by the Free |
||||
* Software Foundation; either version 3 of the License, or (at your option) |
||||
* any later version. See COPYING for more details. |
||||
*/ |
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright 2014 Con Kolivas |
||||
* |
||||
* This program is free software; you can redistribute it and/or modify it |
||||
* under the terms of the GNU General Public License as published by the Free |
||||
* Software Foundation; either version 3 of the License, or (at your option) |
||||
* any later version. See COPYING for more details. |
||||
*/ |
||||
|
||||
/* This file should contain all exported functions of libckpool */ |
||||
|
||||
#ifndef LIBCKPOOL_H |
||||
#define LIBCKPOOL_H |
||||
|
||||
#endif /* LIBCKPOOL_H */ |
Loading…
Reference in new issue