Skip to content

Commit

Permalink
Refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
interkosmos committed Nov 7, 2024
1 parent 2798da7 commit bc9cdd1
Show file tree
Hide file tree
Showing 6 changed files with 309 additions and 235 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ $(DMBEAT): app/dmbeat.f90 $(TARGET)
$(FC) $(FFLAGS) $(LDFLAGS) -o $(DMBEAT) app/dmbeat.f90 $(TARGET) $(LIBCURL) $(LIBLUA54) $(LIBZ) $(LIBRT) $(LDLIBS)

$(DMBOT): app/dmbot.f90 $(TARGET)
$(FC) $(FFLAGS) $(LDFLAGS) -o $(DMBOT) app/dmbot.f90 $(TARGET) $(LIBLUA54) $(LIBSQLITE3) $(LIBSTROPHE) $(LIBRT) $(LDLIBS)
$(FC) $(FFLAGS) $(LDFLAGS) -o $(DMBOT) app/dmbot.f90 $(TARGET) $(LIBLUA54) $(LIBSQLITE3) $(LIBCURL) $(LIBSTROPHE) $(LIBRT) $(LDLIBS)

$(DMDB): app/dmdb.f90 $(TARGET)
$(FC) $(FFLAGS) $(LDFLAGS) -o $(DMDB) app/dmdb.f90 $(TARGET) $(LIBLUA54) $(LIBSQLITE3) $(LIBPTHREAD) $(LIBRT) $(LDLIBS)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,13 @@ containing the **DMPACK** module files is passed through argument `-I`.
| `dm_zlib` | zlib | `pkg-config --libs zlib` |
| `dm_zstd` | zstd | `pkg-config --libs libzstd` |

Some modules use standard input/output to communicate with the following external programs:
Some modules use standard input/output to communicate with external programs:

| Module | Program | Default Binary Name |
|-----------------|---------------------|---------------------------------------------------|
| `dm_camera` | FFmpeg | `ffmpeg` |
| `dm_gm` | GraphicsMagick | `gm` |
| `dm_plot` | Gnuplot | `gnuplot` |
| Module | Program | Default Binary Name |
|-----------------|---------------------|---------------------|
| `dm_camera` | FFmpeg | `ffmpeg` |
| `dm_gm` | GraphicsMagick | `gm` |
| `dm_plot` | Gnuplot | `gnuplot` |

## Source Code Structure

Expand Down
Loading

0 comments on commit bc9cdd1

Please sign in to comment.