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) (side-by-side diff)
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 @@
bin_PROGRAMS = exp004viz
exp004viz_SOURCES = \
+ controller/clear_selection.c \
controller/exp004display.c \
controller/exp004mouse.c \
controller/exp004processhits.c \
controller/exp004reshape.c \
+ controller/keyboard.c \
+ controller/selection_from_db.c \
+ controller/selection_to_db.c \
exp004viz.c \
model/exp004base.c \
util/check_error.c \
+ util/pick_convert.c \
view/exp004geometry.c \
view/exp004view.c
exp004viz_LDADD = ${GLUT_LIBS}
noinst_HEADERS = \
+ controller/clear_selection.h \
controller/exp004display.h \
controller/exp004mouse.h \
controller/exp004processhits.h \
controller/exp004reshape.h \
+ controller/keyboard.h \
+ controller/selection_from_db.h \
+ controller/selection_to_db.h \
model/exp004base.h \
model/exp004state.h \
util/check_error.h \
+ util/pick_convert.h \
view/exp004geometry.h \
view/exp004state0.h \
view/exp004view.h
AM_CFLAGS = -Wall -std=gnu99 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I/usr/include/ncbi
+
+# DB2 Precompiler for Embedded SQL
+%.c : %.sqc
+ db2 CONNECT TO exp004;
+ db2 PRECOMPILE $<;
+
+CLEANFILES = \
+ clear_selection.c \
+ exp004base.c \
+ selection_from_db.c \
+ selection_to_db.c

Valid XHTML 1.0 Strict

Copyright © 2009 Don Pellegrino All Rights Reserved.