author | Don Pellegrino <don@drexel.edu> | 2009-06-13 21:49:18 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2009-06-13 21:49:18 (GMT) |
commit | 71e4f71cba6379ad026548227b5d7deeaf98b068 (patch) (unidiff) | |
tree | 556d15c573dbd28f8c6a1c25ebc9c686d2d557a7 | |
parent | 30041b87ee9b364787109363fc9976b2e47d1416 (diff) | |
download | exp005-71e4f71cba6379ad026548227b5d7deeaf98b068.zip exp005-71e4f71cba6379ad026548227b5d7deeaf98b068.tar.gz exp005-71e4f71cba6379ad026548227b5d7deeaf98b068.tar.bz2 |
Added use of database.
-rw-r--r-- | src/Makefile.am | 21 |
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 @@ | |||
1 | bin_PROGRAMS = exp004viz | 1 | bin_PROGRAMS = exp004viz |
2 | 2 | ||
3 | exp004viz_SOURCES = \ | 3 | exp004viz_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.c | 17 | view/exp004view.c |
13 | 18 | ||
14 | exp004viz_LDADD = ${GLUT_LIBS} | 19 | exp004viz_LDADD = ${GLUT_LIBS} |
15 | 20 | ||
16 | noinst_HEADERS = \ | 21 | noinst_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.h | 36 | view/exp004view.h |
27 | 37 | ||
28 | AM_CFLAGS = -Wall -std=gnu99 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I/usr/include/ncbi | 38 | AM_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 | |||
45 | CLEANFILES = \ | ||
46 | clear_selection.c \ | ||
47 | exp004base.c \ | ||
48 | selection_from_db.c \ | ||
49 | selection_to_db.c | ||