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

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

Changing all the configure scripts and makefiles I created (from scratch, to use autoconf and automake) to have my name and copyright DL Consulting Ltd.

File size: 912 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 md5.cpp \
36 OIDtools.cpp \
37 phrases.cpp \
38 sqldbclass.cpp \
39 text_t.cpp \
40 unitool.cpp
41
42# Option: SQLite support
43if USE_SQLITE
44 libgsdllib_a_CPPFLAGS += -I$(COMMON_SRC_DIR)/packages/sqlite/include
45 libgsdllib_a_SOURCES += sqlitedbclass.cpp
46endif
Note: See TracBrowser for help on using the repository browser.