Simple Time Tracker
This commit is contained in:
commit
53948fa278
8 changed files with 555 additions and 0 deletions
19
config.mk
Normal file
19
config.mk
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue