author | Don Pellegrino <don@drexel.edu> | 2009-06-18 21:11:54 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2009-06-18 21:11:54 (GMT) |
commit | 092f0707cc35d52579e0cfe641f76857e3e97139 (patch) (side-by-side diff) | |
tree | 5968cf6bcbdc72a561f697d77020a5e233944d32 | |
parent | a96f604328f18e16e4235c8e6d9914bc3f12b9cd (diff) | |
download | exp005-092f0707cc35d52579e0cfe641f76857e3e97139.zip exp005-092f0707cc35d52579e0cfe641f76857e3e97139.tar.gz exp005-092f0707cc35d52579e0cfe641f76857e3e97139.tar.bz2 |
Implemented zooming.
-rw-r--r-- | src/Makefile.am | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index b76d228..34c227d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -8,11 +8,16 @@ exp004viz_SOURCES = \ controller/exp004reshape.c \ controller/keyboard.c \ controller/selection_from_db.c \ - controller/selection_to_db.c \ + controller/selsave.c \ + controller/set_ortho.c \ + db/dbconnect.c \ exp004viz.c \ model/exp004base.c \ + model/selection_info_init.c \ + model/zoom_info_init.c \ util/check_error.c \ util/pick_convert.c \ + util/sqlinfoprint.c \ view/exp004geometry.c \ view/exp004init.c \ view/exp004view.c @@ -27,14 +32,22 @@ noinst_HEADERS = \ controller/exp004reshape.h \ controller/keyboard.h \ controller/selection_from_db.h \ - controller/selection_to_db.h \ + controller/selsave.h \ + controller/set_ortho.h \ + db/dbconnect.h \ model/exp004base.h \ model/exp004state.h \ + model/selection_info.h \ + model/selection_info_init.h \ + model/selection_purposes.h \ + model/zoom_info.h \ + model/zoom_info_init.h \ util/check_error.h \ util/pick_convert.h \ + util/sqlinfoprint.h \ view/exp004geometry.h \ - view/exp004state0.h \ view/exp004init.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 @@ -45,7 +58,8 @@ AM_CFLAGS = -Wall -std=gnu99 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE db2 PRECOMPILE $<; CLEANFILES = \ - clear_selection.c \ - exp004base.c \ - selection_from_db.c \ - selection_to_db.c + controller/clear_selection.c \ + db/dbconnect.c \ + model/exp004base.c \ + controller/selection_from_db.c \ + controller/selsave.c |