Skip to content

Commit 53f71ed

Browse files
author
chad-iris
committed
Add sort to test Makefile for order consistency
1 parent c8a73db commit 53f71ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ CFLAGS += -I..
1414
LDFLAGS = -L..
1515
LDLIBS = -lmseed
1616

17-
SRCS := $(wildcard *.c)
17+
SRCS := $(sort $(wildcard *.c))
1818
BINS := $(SRCS:%.c=%)
1919

20-
TESTS := $(wildcard *.test)
20+
TESTS := $(sort $(wildcard *.test))
2121
TESTOUTS := $(TESTS:%.test=%.test.out)
2222

2323
# ASCII color coding for test results, green for PASSED and red for FAILED

0 commit comments

Comments
 (0)