1#==============================================================================
2# Makefile.am for libSystem.la
3# $Id: Makefile.am 437 2010-04-18 20:11:15Z neoneurone $
4#==============================================================================
5SUBDIRS = Information Reflection
6
7AM_CPPFLAGS = -I@top_srcdir@/src/framework
8
9noinst_LTLIBRARIES = libSystem.la
10
11libSystem_la_SOURCES = \
12	AValueType.cpp \
13	CConsole.cpp \
14	CNullValue.cpp \
15	CObject.cpp \
16	CString.cpp \
17	CType.cpp
18
19
20noinst_HEADERS = \
21	AValueType.h \
22	CConsole.h \
23	CNullValue.h \
24	CObject.h \
25	CString.h \
26	CType.h
27
28libSystem_la_LIBADD = \
29	Information/libInformation.la \
30	Reflection/libReflection.la
31
32