1

begin to separate potentially shared code into library

This commit is contained in:
2012-02-23 13:36:48 +04:00
parent 131ea70b6a
commit 8159ff04d2
6 changed files with 24 additions and 2 deletions

6
lib/Makefile.am Normal file

@ -0,0 +1,6 @@
lib_LTLIBRARIES = libyasnd.la
libyasnd_la_SOURCES = libyasnd.c
libyasnd_la_CPPFLAGS = -I$(top_srcdir)
distclean-local:
rm -f Makefile.in &>/dev/null

5
lib/libyasnd.c Normal file

@ -0,0 +1,5 @@
#include "yasnd.h"
void lib_init()
{
}