first commit

This commit is contained in:
Lorenzo Torres 2025-09-04 19:56:16 +02:00
commit 66d7627b44
8 changed files with 163 additions and 0 deletions

22
config.mk Normal file
View file

@ -0,0 +1,22 @@
# se version
VERSION = 0.1
# Customize below to fit your system
# paths
PREFIX = /usr
MANPREFIX = ${PREFIX}/share/man
# OpenBSD (uncomment)
#MANPREFIX = ${PREFIX}/man
# includes and libs
INCS = -I.
LIBS =
# flags
CFLAGS := -std=c99 -pedantic -Wall -O0 ${INCS} -DVERSION=\"${VERSION}\"
CFLAGS := ${CFLAGS} -g
LDFLAGS = ${LIBS}
# compiler
CC = cc