voxabdo

Implementation of the voxabdo cipher in c
git clone https://noxz.tech/git/voxabdo.git
Log | Files

config.mk
1VERSION = 0.0.1
2
3PREFIX = /usr/local
4MANPREFIX = $(PREFIX)/share/man
5
6CFLAGS = -Wall -pedantic -std=c99
7CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600
8STCFLAGS = $(CPPFLAGS) $(CFLAGS)