-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
1749 lines (1464 loc) · 59.3 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##
## Programmer: Craig Stuart Sapp <[email protected]>
## Creation Date: Sun Aug 9 22:20:14 PDT 2015
## Last Modified: Sun Apr 16 08:27:37 PDT 2023
## Syntax: GNU Makefile
## Filename: humlib/Makefile
## vim: ts=3
##
## Description: Makefile to run tasks for humlib library, particularly compiling code.
##
## To compile library and all command-line tools:
## make
## To compile only the library:
## make library
## To compile a specific tool in the "cli" (command line interface) directory, such
## as colortriads:
## make colortriads
## Note that compiled programs are placed in the "bin" directory.
##
## To create your own command-line program, place the source code into the
## "cli" directory. To compile that program (called for example cli/xxx.cpp):
## make xxx
## The library will be compiled before linking to the program if necessary.
##
# Identify the operating system (for MacOS compiling):
OS := $(shell uname -s)
# Set the environmental variable $MACOSX_DEPLOYMENT_TARGET to
# "10.9" in Apple OS X to compile for OS X 10.9 and later (for example,
# you can compile for OS X 10.9 computers even if you are using the 10.10
# version of the operating system).
ENV =
ARCH =
ifeq ($(OS),Darwin)
OS = OSX
# Minimum OS X Version for C++11 is OS X 10.9:
ENV = MACOSX_DEPLOYMENT_TARGET=10.9
# use the following to compile for 32-bit architecture on 64-bit comps:
#ARCH = -m32 -arch i386
else
# use the following to compile for 32-bit architecture on 64-bit comps:
# (you will need 32-bit libraries in order to do this)
# ARCH = -m32
endif
###########################################################################
# #
# Beginning of user-modifiable configuration variables #
# #
# BINDIR: Location where compiled programs will be place.
BINDIR = bin
# OBJDIR: Location where object files will be place.
OBJDIR = obj
# SRCDIR: Location of source-code files
SRCDIR = src
# SRCDIR_MIDIFILE: Location of Midifile library files
SRCDIR_MIDIFILE = src/midifile
# SRCDIR_MIN: Location of the combined source code file (humlib.cpp) is located.
SRCDIR_MIN = min
# SRCS_MIDIFILE: List of midifile source files in include/midifile
SRCS_MIDIFILE = $(wildcard $(SRCDIR_MIDIFILE)/*.cpp)
# OBJS_MIDIFILE: List of midifile library object files:
OBJS_MIDIFILE = $(patsubst $(SRCDIR_MIDIFILE)/%.cpp,$(OBJDIR)/%.o,$(SRCS_MIDIFILE))
# INCDIR: Location where the header files are located.
INCDIR = include
# INCDIR_MIDIFILE: Location where the header files of the midifile library are located.
INCDIR_MIDIFILE = include/midifile
# INCDIR_PUGIXML: Location where the header files of the midifile library are located.
INCDIR_PUGIXML = include/pugixml
# MINDIR: Location for the combined files humlib.cpp and (humlib.h are located.
MINDIR = min
# LIBDIR: Location where library files are placed.
LIBDIR = lib
# LIBFILE: Name of the (static) humlib library files.
LIBFILE = libhumlib.a
# LIBFILE_PUGI: Name of the (static) pugixml library file.
LIBFILE_PUGI = libpugixml.a
# LIBFILE_MIDIFILE: Name of the (static) midifile library file.
LIBFILE_MIDIFILE = libmidifile.a
# CLIDIR: Location where command-line interface programs are located.
CLIDIR = cli
# DLIBFILE = Name of the dynamic library (operation-system specific):
DLIBFILE =
ifeq ($(OS),OSX)
DLIBFILE = humlib.dylib
else
DLIBFILE = humlib.so
endif
# AR: Name of the ar program used to create library files:
AR = ar
# RANLIB: Name of the ranlib program used to create library files:
RANLIB = ranlib
# PREFLAGS: Compiler options placed before filenames
PREFLAGS = -c -g -I$(INCDIR) -I$(INCDIR_PUGIXML) -I$(INCDIR_MIDIFILE)
# Add warnings to PREFLAGS:
PREFLAGS += -Wall -Werror
# Optimize the binary code in object files to run faster:
PREFLAGS += -O3
# Set the C++ standard being used to compile code. Must be C++ 11 or later.
PREFLAGS += -std=c++17
# POSTFLAGS: Compile options placed after filenames
POSTFLAGS =
# Add -static flag to compile without dynamics libraries for better portability:
POSTFLAGS += -static
# COMPILER: Set the compiling program, which is usually given implicitly by the makefile.
# The LANG=C shell variable is used to set the formatting of compiler errors/warnings.
# Setting LANG=C during compilation ensures that the program is
# compiled with consistent settings across different systems, and can
# help prevent issues related to language-specific features or behavior
# that may vary between different locales.
COMPILER = LANG=C $(ENV) $(CXX) $(ARCH)
ifeq ($(CXX),)
COMPILER = LANG=C $(ENV) g++ $(ARCH)
endif
# Or use clang++:
#COMPILER = clang++
#PREFLAGS += -stdlib=libc++
# #
# End of user-modifiable variables. #
# #
###########################################################################
# targets which don't actually refer to files or should not be considered dependent files:
.PHONY: examples myprograms src include dynamic cli min humlib.h pugixml.hpp pugiconfig.hpp
# vpath (short for "variable path") directive is used to specify a
# search path for prerequisites (dependencies) of targets. This allows
# you to specify alternate locations for files that a target depends
# on, rather than having to include the full path to each prerequisite
# in the Makefile.
vpath %.h $(INCDIR) $(INCDIR)/pugixml $(INCDIR_MIDIFILE)
vpath %.cpp $(SRCDIR) $(SRCDIR)/pugixml $(SRCDIR_MIDIFILE)
vpath %.hpp $(INCDIR)/pugixml
vpath %.o $(OBJDIR)
# Generate a list of the object files for humlib (excluding pugixml/midifile files):
OBJS =
OBJS += $(patsubst %.cpp,%.o,$(notdir $(wildcard $(SRCDIR)/tool-*.cpp)))
OBJS += $(patsubst %.cpp,%.o,$(notdir $(wildcard $(SRCDIR)/[A-Z]*.cpp)))
# Add the full path to list of object files:
OBJLIST = $(addprefix $(OBJDIR)/,$(OBJS))
# Create a list of cli programs:
CLILIST += $(patsubst %.cpp,%,$(notdir $(wildcard $(CLIDIR)/*.cpp)))
###########################################################################
# #
# Makefile targets #
# #
##############################
##
## all: The default action which is to compile the pugixml library,
## the humlib library (lib/humlib.o) and the command-line tools.
##
all: tools
##############################
##
## list: List makefile targets.
##
h: list
help: list
list:
@echo
@echo "Humlib make targets:"
@echo " make Compile library and command-line tools (default)."
@echo " make clean Delete object files."
@echo " make clean-bin Delete compiled CLI programs."
@echo " make clean-lib Delete library files."
@echo " make dirs Create obj and lib directories if they do not yet exist."
@echo " make help Show this list."
@echo " make install Copy CLI programs to /usr/local/bin"
@echo " make library Compile humlib library."
@echo " make min Compile combined files humlib.cpp and humlib.h (in min directory)"
@echo " make min-test Test Compile combined file humlib.cpp .h (in min directory)"
@echo " make programs Same as default make target."
@echo " make pugi Compile pugixml library."
@echo " make strip Strip (remove debugging info) CLI programs."
@echo " make superclean Delete object, library, and compiled CLI programs."
@echo " make update Download most recent code on Github."
@echo
@echo "Any other make target will be presumed to compile a specific"
@echo "CLI program such as cli/flipper.cpp:"
@echo " make flipper"
@echo
###########################################################################
# #
# Define an explicit rule for compiling object files: #
# #
%.o : %.cpp
@echo [CC] $<
@$(COMPILER) $(PREFLAGS) -c $< -o $(OBJDIR)/$@ $(POSTFLAGS)
# #
###########################################################################
##############################
##
## update: Download the most recent version of the humlib repository from
## Github (if humlib was downloaded with "git clone" and not as a zip file.
## There is usually a conflict with the min files when downloading since
## the date line is always added when creating it, and this causes
## conflicts when someone else has uploaded new min files. The "git checkout"
## command reverts the local copy to the last pull request version to avoid
## having a merge problem. After running "make update", you can type
## "make min" to update the min files to commit and push back got github.
##
update:
git checkout $(MINDIR)/humlib.cpp
git checkout $(MINDIR)/humlib.h
git checkout $(INCDIR)/humlib.h
git pull
# copy Midifile library (maintance use only, not of general use):
midifile-copy:
cp ../../midifile/src/*.cpp $(SRCDIR_MIDIFILE)
cp ../../midifile/src/Binasc.cpp $(SRCDIR_MIDIFILE)
cp ../../midifile/src/MidiEvent.cpp $(SRCDIR_MIDIFILE)
cp ../../midifile/src/MidiEventList.cpp $(SRCDIR_MIDIFILE)
cp ../../midifile/src/MidiFile.cpp $(SRCDIR_MIDIFILE)
cp ../../midifile/src/MidiMessage.cpp $(SRCDIR_MIDIFILE)
cp ../../midifile/include/Binasc.h $(INCDIR_MIDIFILE)
cp ../../midifile/include/MidiEvent.h $(INCDIR_MIDIFILE)
cp ../../midifile/include/MidiEventList.h $(INCDIR_MIDIFILE)
cp ../../midifile/include/MidiFile.h $(INCDIR_MIDIFILE)
cp ../../midifile/include/MidiMessage.h $(INCDIR_MIDIFILE)
##############################
##
## midifile: Create a static library for midifile (https://midifile.sapp.org).
## Midifile is used to parse and write MIDI files files in the humlib code,
## such as for the tool muse2mid.
##
midifile: makedirs $(LIBDIR)/$(LIBFILE_MIDIFILE)
$(LIBDIR)/$(LIBFILE_MIDIFILE): $(OBJS_MIDIFILE)
@echo [AR] $@
@$(AR) cru $@ $^
@$(RANLIB) $@
$(OBJDIR):
@mkdir -p $(OBJDIR)
$(OBJDIR)/%.o: $(SRCDIR_MIDIFILE)/%.cpp | $(OBJDIR)
@echo [CC] $<
@$(COMPILER) $(PREFLAGS) -c $< -o $@ $(POSTFLAGS)
##############################
##
## pugixml: Create a static library for pugixml (https://pugixml.org).
## Pugixml is used to parse and write XML files in the humlib code,
## such as for the tool musicxml2hum, or mei2hum.
##
pugi: pugixml
pugixml: makedirs $(LIBDIR)/$(LIBFILE_PUGI)
$(LIBDIR)/$(LIBFILE_PUGI): $(OBJDIR)/pugixml.o
@echo [AR] $@
@$(AR) cru $@ $<
@$(RANLIB) $@
$(OBJDIR)/pugixml.o: pugixml.cpp
@echo [CC] $<
@$(COMPILER) $(PREFLAGS) -I$(INCDIR)/pugixml -c $< -o $@ $(POSTFLAGS)
##############################
##
## dynamic: Create a dynamic library (as compared to a static library).
## Note: not tested in a while, and may be operating-system specific,
## such as the MacOS and Linux versions below:
##
dynamic: min
ifeq ($(OS),OSX)
g++ -dynamiclib -o $(LIBDIR)/$(DLIBFILE_MIN) $(OBJDIR)/humlib.o
else
g++ -shared -fPIC -o $(LIBDIR)/$(DLIBFILE_MIN) $(OBJDIR)/humlib.o
endif
##############################
##
## library: Create lib/humlib.a from object files in the obj directory
## (Other than pugixml files).
##
l: library
lib: library
library: makedirs min pugixml midifile $(OBJS)
@-rm -f $(LIBDIR)/$(LIBFILE)
@$(AR) r $(LIBDIR)/$(LIBFILE) $(OBJLIST)
@$(RANLIB) $(LIBDIR)/$(LIBFILE)
##############################
##
## min: Create combined humlib files min/humlib.cpp and min/humlib.h
## for use in external projects.
##
m: min
min:
@$(BINDIR)/makeMinDistribution
##############################
##
## min-test: Test compiling of the combined min/humlib.cpp file.
## for use in external projects.
##
mt: min-test
min-test:
$(COMPILER) $(PREFLAGS) -I$(MINDIR) -c $(MINDIR)/humlib.cpp -o $(OBJDIR)/humlib.o $(POSTFLAGS)
##############################
##
## clean-lib: Erase library directory.
##
c: clean
co: clean-obj
clean-obj: clean
clean:
@echo Erasing object files...
@-rm -f $(OBJDIR)/*.o
@echo Erasing obj directory...
@-rmdir $(OBJDIR)
##############################
##
## clean-lib: Erase library directory.
##
cl: clean-lib
clean-library: clean-lib
clean-lib:
@echo Erasing library files...
@-rm -f $(LIBDIR)/*.a
@echo Erasing lib directory...
@-rmdir $(LIBDIR)
##############################
##
## clean-bin: Erase compiled cli programs in the bin directory.
##
cb: clean-bin
clean-progs: clean-bin
clean-binary: clean-bin
clean-bin:
# Does not erase test programs
@echo Erasing compiled programs in bin...
(cd $(BINDIR) && rm -f $(CLILIST))
##############################
##
## superclean: Erase object, library and compiled cli programs.
##
superclean: clean-obj clean-lib clean-bin
##############################
##
## programs: Compile all programs in the cli directory. Compiled programs
## are placed in the bin directory. After compiling, you might want
## to run "make strip" to remove debugging information. You might
## also want to run "make install" to copy the programs to /usr/local/bin.
## In that case "make strip" is run automatically.
##
cli: programs
cli: programs
examples: programs
prog: programs
progs: programs
tool: programs
tools: programs
programs:
@$(MAKE) -f Makefile.programs
##############################
##
## strip: Remove debugging information from compiled programs.
## This makes the files sizes much smaller, so it is useful
## to do this if you are not going to debug the programs with
## gdb, for example. When installing the programs into /usr/local/bin/,
## they will be stripped automatically before copying.
##
##
strip:
@(cd $(BINDIR) && strip $(CLILIST))
strip-sudo:
@(cd $(BINDIR) && sudo -u $(SUDO_USER) strip $(CLILIST))
##############################
##
## install: Copy CLI programs from "bin" to /usr/local/bin. You should check
## that there are not any naming conflicts with programs already in /usr/local/bin.
## In general this should not be a problem. Usually /usr/local/bin is already
## included in the $PATH shell variable. If not, then you cannot access the
## programs on the command-line without adding /usr/local/bin to your PATH.
## After running "install" then type "which flipper" which should reply:
## /usr/local/bin/flipper
## If not then check the path:
## echo $PATH
## or to view the list of directories more easily:
## echo $PATH | tr : "\n"
## /usr/local/bin should be in the list. If not, then add to the PATH. This will
## depend on your shell. Check the shell name with the command:
## echo $SHELL
## For bash shells, typically add the line in the file .profile (if it already exists),
## ~/.bashrc_profile or ~/.bashrc otherwise:
## export PATH = "/usr/local/bin:$PATH
## Then close the shell (terminal) then open a new one and try "which flipper" again.
## If not found, then try another configuration filename to add the PATH update to.
##
## You will likely have to run this make target as:
## sudo make install
## (try without sudo first, then if that fails use sudo).
##
install: strip-sudo
@echo Copying cli tools to /usr/local/bin
@(cd $(BINDIR) && cp -f $(CLILIST) /usr/local/bin/)
##############################
##
## makedirs: Create directories to store object and library files.
##
md: makedirs
dirs: makedirs
makedirs:
@-mkdir -p $(OBJDIR)
@-mkdir -p $(LIBDIR)
##############################
##
## %: Default rule. If the target is unknown, then assume it is a program
## to compile from the cli directory.
##
%:
@echo 'if [ "$<" == "" ]; then $(MAKE) -f Makefile.programs $@; fi' | bash -s
###########################################################################
# #
# Dependencies -- generated with the following command in #
# the src directory (in bash shell): #
# #
# for i in src/*.cpp
# do
# cc -std=c++17 -Iinclude -MM $i \
# | sed 's/include\///g; s/src\///g; s/pugixml.hpp//g; s/pugiconfig.hpp//g'
# echo
# done
#
Convert-harmony.o: Convert-harmony.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h
Convert-instrument.o: Convert-instrument.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h
Convert-kern.o: Convert-kern.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h
Convert-math.o: Convert-math.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h
Convert-mens.o: Convert-mens.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h HumRegex.h
Convert-musedata.o: Convert-musedata.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h
Convert-pitch.o: Convert-pitch.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h HumRegex.h
Convert-reference.o: Convert-reference.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h
Convert-rhythm.o: Convert-rhythm.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h
Convert-string.o: Convert-string.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h
Convert-tempo.o: Convert-tempo.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h HumRegex.h
GridMeasure.o: GridMeasure.cpp HumGrid.h \
GridMeasure.h GridCommon.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h GridSlice.h MxmlPart.h \
MxmlMeasure.h \
GridPart.h GridStaff.h GridSide.h \
GridVoice.h
GridPart.o: GridPart.cpp GridPart.h GridStaff.h \
GridCommon.h GridSide.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h GridVoice.h
GridSide.o: GridSide.cpp HumGrid.h GridMeasure.h \
GridCommon.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h GridSlice.h MxmlPart.h \
MxmlMeasure.h \
GridPart.h GridStaff.h GridSide.h \
GridVoice.h
GridSlice.o: GridSlice.cpp GridPart.h GridStaff.h \
GridCommon.h GridSide.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h GridVoice.h HumGrid.h \
GridMeasure.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h GridSlice.h \
MxmlPart.h MxmlMeasure.h \
GridStaff.o: GridStaff.cpp HumGrid.h GridMeasure.h \
GridCommon.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h GridSlice.h MxmlPart.h \
MxmlMeasure.h \
GridPart.h GridStaff.h GridSide.h \
GridVoice.h HumRegex.h
GridVoice.o: GridVoice.cpp GridVoice.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h
HumAddress.o: HumAddress.cpp HumAddress.h \
HumdrumLine.h HumdrumToken.h HumNum.h \
HumHash.h HumParamSet.h
HumGrid.o: HumGrid.cpp HumGrid.h GridMeasure.h \
GridCommon.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h GridSlice.h MxmlPart.h \
MxmlMeasure.h \
GridPart.h GridStaff.h GridSide.h \
GridVoice.h Convert.h
HumHash.o: HumHash.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h
HumInstrument.o: HumInstrument.cpp HumInstrument.h
HumNum.o: HumNum.cpp HumNum.h
HumParamSet.o: HumParamSet.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h
HumPitch.o: HumPitch.cpp HumPitch.h HumRegex.h
HumRegex.o: HumRegex.cpp HumRegex.h
HumSignifier.o: HumSignifier.cpp HumSignifier.h \
HumRegex.h
HumSignifiers.o: HumSignifiers.cpp HumSignifiers.h \
HumSignifier.h
HumTool.o: HumTool.cpp HumTool.h Options.h \
HumdrumFileSet.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h HumdrumFileStream.h
HumTransposer.o: HumTransposer.cpp HumTransposer.h \
HumPitch.h
HumdrumFile.o: HumdrumFile.cpp HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h Convert.h
HumdrumFileBase-net.o: HumdrumFileBase-net.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h
HumdrumFileBase.o: HumdrumFileBase.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h
HumdrumFileContent-accidental.o: HumdrumFileContent-accidental.cpp \
Convert.h HumNum.h HumdrumToken.h \
HumAddress.h HumHash.h HumParamSet.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h
HumdrumFileContent-barline.o: HumdrumFileContent-barline.cpp \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h
HumdrumFileContent-beam.o: HumdrumFileContent-beam.cpp \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h
HumdrumFileContent-metlev.o: HumdrumFileContent-metlev.cpp \
Convert.h HumNum.h HumdrumToken.h \
HumAddress.h HumHash.h HumParamSet.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h
HumdrumFileContent-note.o: HumdrumFileContent-note.cpp \
Convert.h HumNum.h HumdrumToken.h \
HumAddress.h HumHash.h HumParamSet.h \
HumRegex.h HumdrumFileContent.h \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h
HumdrumFileContent-ottava.o: HumdrumFileContent-ottava.cpp \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h
HumdrumFileContent-phrase.o: HumdrumFileContent-phrase.cpp \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h
HumdrumFileContent-rest.o: HumdrumFileContent-rest.cpp \
Convert.h HumNum.h HumdrumToken.h \
HumAddress.h HumHash.h HumParamSet.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumRegex.h
HumdrumFileContent-slur.o: HumdrumFileContent-slur.cpp \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h
HumdrumFileContent-stemlengths.o: HumdrumFileContent-stemlengths.cpp \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h Convert.h
HumdrumFileContent-text.o: HumdrumFileContent-text.cpp \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h
HumdrumFileContent-tie.o: HumdrumFileContent-tie.cpp \
Convert.h HumNum.h HumdrumToken.h \
HumAddress.h HumHash.h HumParamSet.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h
HumdrumFileContent-timesig.o: HumdrumFileContent-timesig.cpp \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h Convert.h
HumdrumFileContent.o: HumdrumFileContent.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h
HumdrumFileSet.o: HumdrumFileSet.cpp HumdrumFileSet.h \
HumdrumFile.h HumdrumFileContent.h \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h HumdrumFileStream.h \
Options.h
HumdrumFileStream.o: HumdrumFileStream.cpp HumRegex.h \
HumdrumFileSet.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h HumdrumFileStream.h Options.h
HumdrumFileStructure-strophe.o: HumdrumFileStructure-strophe.cpp \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h
HumdrumFileStructure.o: HumdrumFileStructure.cpp \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h Convert.h
HumdrumLine-kern.o: HumdrumLine-kern.cpp HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h
HumdrumLine.o: HumdrumLine.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h
HumdrumToken-base40.o: HumdrumToken-base40.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h
HumdrumToken-midi.o: HumdrumToken-midi.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h
HumdrumToken.o: HumdrumToken.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h HumRegex.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h
MuseData.o: MuseData.cpp HumRegex.h MuseData.h \
MuseRecord.h MuseRecordBasic.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h GridVoice.h
MuseDataSet.o: MuseDataSet.cpp MuseDataSet.h \
MuseData.h MuseRecord.h MuseRecordBasic.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h GridVoice.h \
HumRegex.h
MuseRecord-attributes.o: MuseRecord-attributes.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h \
MuseData.h MuseRecord.h MuseRecordBasic.h \
GridVoice.h
MuseRecord-directions.o: MuseRecord-directions.cpp MuseData.h \
MuseRecord.h MuseRecordBasic.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h GridVoice.h
MuseRecord-figure.o: MuseRecord-figure.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h \
MuseData.h MuseRecord.h MuseRecordBasic.h \
GridVoice.h
MuseRecord-humdrum.o: MuseRecord-humdrum.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h MuseData.h \
MuseRecord.h MuseRecordBasic.h GridVoice.h
MuseRecord-measure.o: MuseRecord-measure.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h \
MuseData.h MuseRecord.h MuseRecordBasic.h \
GridVoice.h
MuseRecord-notations.o: MuseRecord-notations.cpp MuseRecord.h \
MuseRecordBasic.h HumNum.h HumdrumToken.h \
HumAddress.h HumHash.h HumParamSet.h \
GridVoice.h
MuseRecord-note.o: MuseRecord-note.cpp Convert.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h \
MuseData.h MuseRecord.h MuseRecordBasic.h \
GridVoice.h
MuseRecord.o: MuseRecord.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h HumRegex.h MuseData.h \
MuseRecord.h MuseRecordBasic.h GridVoice.h
MuseRecordBasic-controls.o: MuseRecordBasic-controls.cpp \
MuseRecordBasic.h HumNum.h HumdrumToken.h \
HumAddress.h HumHash.h HumParamSet.h \
GridVoice.h
MuseRecordBasic-suggestions.o: MuseRecordBasic-suggestions.cpp \
MuseRecord.h MuseRecordBasic.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h GridVoice.h
MuseRecordBasic.o: MuseRecordBasic.cpp MuseRecordBasic.h \
HumNum.h HumdrumToken.h HumAddress.h \
HumHash.h HumParamSet.h GridVoice.h
MxmlEvent.o: MxmlEvent.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h MxmlEvent.h GridCommon.h \
MxmlMeasure.h \
MxmlPart.h
MxmlMeasure.o: MxmlMeasure.cpp MxmlEvent.h \
GridCommon.h HumNum.h \
MxmlMeasure.h MxmlPart.h
MxmlPart.o: MxmlPart.cpp MxmlMeasure.h GridCommon.h \
HumNum.h \
MxmlPart.h
NoteCell.o: NoteCell.cpp Convert.h HumNum.h \
HumdrumToken.h HumAddress.h HumHash.h \
HumParamSet.h NoteCell.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h NoteGrid.h
NoteGrid.o: NoteGrid.cpp NoteGrid.h NoteCell.h \
HumdrumFile.h HumdrumFileContent.h \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h HumRegex.h
Options.o: Options.cpp Options.h HumRegex.h
PixelColor.o: PixelColor.cpp PixelColor.h
pugixml.o: pugixml.cpp
tool-addic.o: tool-addic.cpp tool-addic.h HumTool.h \
Options.h HumdrumFileSet.h HumdrumFile.h \
HumdrumFileContent.h HumdrumFileStructure.h \
HumdrumFileBase.h HumSignifiers.h \
HumSignifier.h HumdrumLine.h HumdrumToken.h \
HumNum.h HumAddress.h HumHash.h \
HumParamSet.h HumdrumFileStream.h Convert.h \
HumRegex.h
tool-addkey.o: tool-addkey.cpp tool-addkey.h \
HumTool.h Options.h HumdrumFileSet.h \
HumdrumFile.h HumdrumFileContent.h \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h HumdrumFileStream.h \
HumRegex.h
tool-addlabels.o: tool-addlabels.cpp tool-addlabels.h \
HumTool.h Options.h HumdrumFileSet.h \
HumdrumFile.h HumdrumFileContent.h \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h HumdrumFileStream.h \
HumRegex.h
tool-addtempo.o: tool-addtempo.cpp tool-addtempo.h \
HumTool.h Options.h HumdrumFileSet.h \
HumdrumFile.h HumdrumFileContent.h \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h HumdrumFileStream.h \
HumRegex.h
tool-autoaccid.o: tool-autoaccid.cpp tool-autoaccid.h \
HumTool.h Options.h HumdrumFileSet.h \
HumdrumFile.h HumdrumFileContent.h \
HumdrumFileStructure.h HumdrumFileBase.h \
HumSignifiers.h HumSignifier.h HumdrumLine.h \
HumdrumToken.h HumNum.h HumAddress.h \
HumHash.h HumParamSet.h HumdrumFileStream.h \
Convert.h HumRegex.h
tool-autobeam.o: tool-autobeam.cpp tool-autobeam.h \