Skip to content

Commit 3f2c8dc

Browse files
committedNov 6, 2022
removed headers from incorrect place in makefile
1 parent a101a15 commit 3f2c8dc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ bin/tests: $(TST_SRCS) $(TST_OBJS)
5252

5353

5454
# To use munit the test suite written in tests/mutests will be executed
55-
bin/mutests: $(MU_TST_SRCS) $(MU_TST_OBJS)
56-
$(CC) $^ $(MU_TST_HDRS) $() $(CC_FLAGS) -o $@
55+
bin/mutests: $(MU_TST_SRCS) $(MU_TST_OBJS) $(MU_TST_HDRS)
56+
$(CC) $(MU_TST_SRCS) $(MU_TST_OBJS) $(CC_FLAGS) -o $@
5757

5858
.PHONY: clean
5959

‎mutests/mutests.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1080,4 +1080,4 @@ int main(int argc, char* argv[MUNIT_ARRAY_PARAM(argc + 1)]) {
10801080
munit_suite_main(&general_llist_suite, (void*) "munit", argc, argv);
10811081
munit_suite_main(&null_llist_suite, (void*) "munit", argc, argv);
10821082
return 0;
1083-
}
1083+
}

0 commit comments

Comments
 (0)
Please sign in to comment.