Skip to content

Commit af508c4

Browse files
committed
New: Updating the Makefile with the new headers required by KeyTransition and KeyProfile
1 parent fa1316e commit af508c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ $(BUILD)/pitchclass.o: $(SRC)/pitchclass.cc
5656
$(CC) -c -o $(BUILD)/pitchclass.o $(SRC)/pitchclass.cc $(CFLAGS)
5757

5858

59-
test_keyprofile: $(BUILD)/test_keyprofile.o $(BUILD)/keyprofile.o
60-
$(CC) -o $(BIN)/test_keyprofile $(BUILD)/test_keyprofile.o $(BUILD)/keyprofile.o
59+
test_keyprofile: $(BUILD)/test_keyprofile.o $(BUILD)/keyprofile.o $(BUILD)/pitchclass.o $(BUILD)/key.o
60+
$(CC) -o $(BIN)/test_keyprofile $(BUILD)/test_keyprofile.o $(BUILD)/keyprofile.o $(BUILD)/pitchclass.o $(BUILD)/key.o
6161

6262
$(BUILD)/test_keyprofile.o: $(TEST)/test_keyprofile.cc
6363
$(CC) -c -o $(BUILD)/test_keyprofile.o $(TEST)/test_keyprofile.cc $(CFLAGS)
@@ -66,8 +66,8 @@ $(BUILD)/keyprofile.o: $(SRC)/keyprofile.cc
6666
$(CC) -c -o $(BUILD)/keyprofile.o $(SRC)/keyprofile.cc $(CFLAGS)
6767

6868

69-
test_keytransition: $(BUILD)/test_keytransition.o $(BUILD)/keytransition.o
70-
$(CC) -o $(BIN)/test_keytransition $(BUILD)/test_keytransition.o $(BUILD)/keytransition.o
69+
test_keytransition: $(BUILD)/test_keytransition.o $(BUILD)/keytransition.o $(BUILD)/key.o $(BUILD)/pitchclass.o
70+
$(CC) -o $(BIN)/test_keytransition $(BUILD)/test_keytransition.o $(BUILD)/keytransition.o $(BUILD)/key.o $(BUILD)/pitchclass.o
7171

7272
$(BUILD)/test_keytransition.o: $(TEST)/test_keytransition.cc
7373
$(CC) -c -o $(BUILD)/test_keytransition.o $(TEST)/test_keytransition.cc $(CFLAGS)

0 commit comments

Comments
 (0)