wikid

[discontinued] A quick and simple CLI-program for downloading and rendering wikipedia pages in the terminal.
git clone https://noxz.tech/git/wikid.git
Log | Files | README | LICENSE

config.mk
1# wikid version
2VERSION = 0.1.1
3
4# paths
5PREFIX = /usr/local
6MANPREFIX = ${PREFIX}/share/man
7
8# flags
9CPPFLAGS = -D_DEFAULT_SOURCE\
10           -D_BSD_SOURCE\
11           -D_POSIX_C_SOURCE=2\
12           -DVERSION=\"${VERSION}\"
13
14CFLAGS   = -std=c99\
15           -Wall\
16           -Wno-deprecated-declarations\
17           -Os\
18           -pedantic\
19           ${CPPFLAGS}
20
21LDFLAGS  = -lcurl\
22           -lncurses
23
24# compiler and linker
25CC = cc