tapas

[discontinued] A small program used for compiling refer output into the APA reference format.
git clone https://noxz.tech/git/tapas.git
Log | Files | README | LICENSE

config.mk
1# tapas version
2VERSION = 0.0.1
3
4# paths
5PREFIX = /usr/local
6MANPREFIX = $(PREFIX)/share/man
7
8# flags
9CFLAGS = -Wall -Wno-format-truncation -pedantic -std=c99
10CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600
11STCFLAGS = $(CPPFLAGS) $(CFLAGS)
12STLDFLAGS = $(LDFLAGS)
13
14# compiler and linker
15CC = gcc