Skip to content

Commit

Permalink
build.sh: added drone_music example
Browse files Browse the repository at this point in the history
  • Loading branch information
vmagnin committed May 20, 2024
1 parent efbdf89 commit ef2d537
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# Vincent Magnin
# Last modification: 2024-05-19
# Last modification: 2024-05-20

# For a safer script:
set -eu
Expand Down Expand Up @@ -28,7 +28,7 @@ fi
"${FC}" ${flags} -c src/forsynth.f90 src/tape_recorder_class.f90 src/wav_file_class.f90 src/envelopes.f90 src/signals.f90 src/music_common.f90 src/music.f90 src/audio_effects.f90

# Compiling examples:
for file in "chords_and_melody" "demo_effects" "blues" "all_signals" "drum_machine" "misc_sounds"; do
for file in "chords_and_melody" "demo_effects" "blues" "all_signals" "drum_machine" "misc_sounds" "drone_music"; do
echo "${file}"
"${FC}" ${flags} audio_effects.o envelopes.o forsynth.o music_common.o music.o signals.o tape_recorder_class.o wav_file_class.o example/${file}.f90 -o build/${file}.out
done
Expand Down

0 comments on commit ef2d537

Please sign in to comment.