summaryrefslogtreecommitdiffstats
authorDon Pellegrino <don@drexel.edu>2009-06-13 21:49:18 (GMT)
committer Don Pellegrino <don@drexel.edu>2009-06-13 21:49:18 (GMT)
commit71e4f71cba6379ad026548227b5d7deeaf98b068 (patch) (unidiff)
tree556d15c573dbd28f8c6a1c25ebc9c686d2d557a7
parent30041b87ee9b364787109363fc9976b2e47d1416 (diff)
downloadexp005-71e4f71cba6379ad026548227b5d7deeaf98b068.zip
exp005-71e4f71cba6379ad026548227b5d7deeaf98b068.tar.gz
exp005-71e4f71cba6379ad026548227b5d7deeaf98b068.tar.bz2
Added use of database.
-rw-r--r--src/Makefile.am21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index bd0d702..42cd2e6 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,28 +1,49 @@
1bin_PROGRAMS = exp004viz1bin_PROGRAMS = exp004viz
22
3exp004viz_SOURCES = \3exp004viz_SOURCES = \
4 controller/clear_selection.c \
4 controller/exp004display.c \5 controller/exp004display.c \
5 controller/exp004mouse.c \6 controller/exp004mouse.c \
6 controller/exp004processhits.c \7 controller/exp004processhits.c \
7 controller/exp004reshape.c \8 controller/exp004reshape.c \
9 controller/keyboard.c \
10 controller/selection_from_db.c \
11 controller/selection_to_db.c \
8 exp004viz.c \12 exp004viz.c \
9 model/exp004base.c \13 model/exp004base.c \
10 util/check_error.c \14 util/check_error.c \
15 util/pick_convert.c \
11 view/exp004geometry.c \16 view/exp004geometry.c \
12 view/exp004view.c17 view/exp004view.c
1318
14exp004viz_LDADD = ${GLUT_LIBS}19exp004viz_LDADD = ${GLUT_LIBS}
1520
16noinst_HEADERS = \21noinst_HEADERS = \
22 controller/clear_selection.h \
17 controller/exp004display.h \23 controller/exp004display.h \
18 controller/exp004mouse.h \24 controller/exp004mouse.h \
19 controller/exp004processhits.h \25 controller/exp004processhits.h \
20 controller/exp004reshape.h \26 controller/exp004reshape.h \
27 controller/keyboard.h \
28 controller/selection_from_db.h \
29 controller/selection_to_db.h \
21 model/exp004base.h \30 model/exp004base.h \
22 model/exp004state.h \31 model/exp004state.h \
23 util/check_error.h \32 util/check_error.h \
33 util/pick_convert.h \
24 view/exp004geometry.h \34 view/exp004geometry.h \
25 view/exp004state0.h \35 view/exp004state0.h \
26 view/exp004view.h36 view/exp004view.h
2737
28AM_CFLAGS = -Wall -std=gnu99 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I/usr/include/ncbi38AM_CFLAGS = -Wall -std=gnu99 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I/usr/include/ncbi
39
40# DB2 Precompiler for Embedded SQL
41%.c : %.sqc
42 db2 CONNECT TO exp004;
43 db2 PRECOMPILE $<;
44
45CLEANFILES = \
46 clear_selection.c \
47 exp004base.c \
48 selection_from_db.c \
49 selection_to_db.c

Valid XHTML 1.0 Strict

Copyright © 2009 Don Pellegrino All Rights Reserved.