Simple Time Tracker

This commit is contained in:
Simon Lieb 2019-10-02 19:01:25 +02:00
commit 53948fa278
8 changed files with 555 additions and 0 deletions

19
config.mk Normal file
View file

@ -0,0 +1,19 @@
# stt version
VERSION = 0.1
# Customize below to fit your system
# paths
PREFIX = /usr/local
# includes and libs
INCS =
LIBS =
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -static -s ${LIBS}
# compiler and linker
CC = cc