Index

lognestmonster / 22a7c5d

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
16520 Dec 2019 13:5933010baUpdate Makefile to add bin/ directory if nonexistentJosh Stockin110N

Blob @ lognestmonster / Makefile

text/plain204 bytesdownload raw
1.phony: all tests c_unit clean
2
3all: tests
4tests: c_unit
5
6c_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
10clean:
11 rm -rf bin/*
12 rmdir bin/
13