Index
lognestmonster
/
22a7c5d
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?
165
20 Dec 2019 13:59
33010ba
Update Makefile to add bin/ directory if nonexistent
Josh Stockin
1
1
0
N
Blob @
lognestmonster
/
Makefile
text/plain
204 bytes
download raw
1
.phony: all tests c_unit clean
2
3
all: tests
4
tests: c_unit
5
6
c_unit:
7
mkdir -p bin/
8
gcc -o bin/c tests/main.c tests/main_test.c -Wall -Wextra -Werror -pedantic -I"./src/c"
9
10
clean:
11
rm -rf bin/*
12
rmdir bin/
13