Skip to content

Commit 33cc3b9

Browse files
Source / Include Folder (#88)
Moved Source Files Into `src` Folder
1 parent 8f5a73a commit 33cc3b9

54 files changed

Lines changed: 8 additions & 5 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Generate coverage
2626
run: |
2727
make -j$(nproc) gcov check
28-
gcov -abcfu *.c tests/*.c
28+
gcov -abcfu src/*.c tests/*.c
2929
3030
- uses: codecov/codecov-action@v2
3131
with:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,10 @@ tests/xtimegm: xtime.o tests/xtimegm.o
232232
$(BIN_GOALS):
233233
+$(CC) $(ALL_LDFLAGS) $^ $(ALL_LDLIBS) -o $@
234234

235-
%.o: %.c .flags
235+
%.o: src/%.c .flags
236+
$(CC) $(ALL_CFLAGS) -c $< -o $@
237+
238+
tests/%.o: tests/%.c .flags
236239
$(CC) $(ALL_CFLAGS) -c $< -o $@
237240

238241
# Need a rule for .flags to convince make to apply the above pattern rule if
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)