Index
lognestmonster
/
fd2d2c3
A general-purpose single-header C logging library and parser for event-based logs. (Incomplete)
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
162
08 Dec 2019 19:53
6dd952c
Update unit testing and CI testing configuration
Josh Stockin
1
11
0
N
Blob @
lognestmonster
/
Makefile
text/plain
189 bytes
download raw
1
.phony: all tests c_unit clean
2
3
all: tests
4
tests: c_unit
5
6
c_unit:
7
gcc -o bin/c tests/main.c tests/main_test.c -Wall -Wextra -Werror -pedantic -I"./src/c"
8
9
clean:
10
rm -rf bin/*
11
rmdir bin/
12