diff options
author | Thomas White <taw@physics.org> | 2009-11-25 15:17:03 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2009-11-25 15:17:03 +0100 |
commit | 15c526821d0150b11ef5eb1f637d76e491eaa38c (patch) | |
tree | 4dcbb253e75355cb883b57d673fc6e381ba254c7 /src/Makefile.am | |
parent | b0e34adb4187a4a5e4fa738f72817de656bf568a (diff) |
Move main.c to pattern_sim.c
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 1220b7f2..3a251dfb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,10 @@ -bin_PROGRAMS = pattern_sim +bin_PROGRAMS = pattern_sim #integr_sim AM_CFLAGS = -Wall -g @CFLAGS@ -pattern_sim_SOURCES = main.c diffraction.c utils.c image.c cell.c hdf5-file.c \ - ewald.c detector.c sfac.c +pattern_sim_SOURCES = pattern_sim.c diffraction.c utils.c image.c cell.c \ + hdf5-file.c ewald.c detector.c sfac.c pattern_sim_LDADD = @LIBS@ + +integr_sim_SOURCES = integr_sim.c diffraction.c utils.c ewald.c sfac.c +integr_sim_LDADD = @LIBS@ |