source: main/trunk/gs2-core/common-src/src/lib/Makefile.am@ 22795

Last change on this file since 22795 was 22795, checked in by mdewsnip, 14 years ago

Updated Linux and Windows makefiles in common-src/src/lib to no longer include md5.

File size: 901 bytes
Line 
1###########################################################################
2#
3# Makefile -- Makefile for common-src/src/lib
4#
5# By Michael Dewsnip
6#
7# Copyright (C) 2010 DL Consulting Ltd.
8#
9###########################################################################
10
11
12COMMON_SRC_DIR = @top_srcdir@
13
14
15# Libraries compiled
16noinst_LIBRARIES = libgsdllib.a
17
18# Library: libgsdllib.a
19libgsdllib_a_CPPFLAGS = \
20 $(COMPAT32BITFLAGS)
21
22# Sources for libgsdllib.a
23libgsdllib_a_SOURCES = \
24 cfgread.cpp \
25 cnfgable.cpp \
26 cnfgator.cpp \
27 dbclass.cpp \
28 display.cpp \
29 fileutil.cpp \
30 gsdlsitecfg.cpp \
31 gsdltimes.cpp \
32 gsdltools.cpp \
33 gsdlunicode.cpp \
34 infodbclass.cpp \
35 OIDtools.cpp \
36 phrases.cpp \
37 sqldbclass.cpp \
38 text_t.cpp \
39 unitool.cpp
40
41# Option: SQLite support
42if USE_SQLITE
43 libgsdllib_a_CPPFLAGS += -I$(COMMON_SRC_DIR)/packages/sqlite/include
44 libgsdllib_a_SOURCES += sqlitedbclass.cpp
45endif
Note: See TracBrowser for help on using the repository browser.