Index

lognestmonster / 6dd952c

A general-purpose single-header C logging library and parser for event-based logs. (Incomplete)

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
16208 Dec 2019 19:536dd952cUpdate unit testing and CI testing configurationJosh Stockin1110N

Blob @ lognestmonster / Makefile

text/plain189 bytesdownload raw
1.phony: all tests c_unit clean
2
3all: tests
4tests: c_unit
5
6c_unit:
7 gcc -o bin/c tests/main.c tests/main_test.c -Wall -Wextra -Werror -pedantic -I"./src/c"
8
9clean:
10 rm -rf bin/*
11 rmdir bin/
12