27
Content-Disposition: inline; filename="
452
Last-Modified: Mon, 04 May 2026 05:06:22 GMT
Expires: Thu, 01 May 2036 05:06:22 GMT
ETag: "a59ead3ae076425dcbcd4757bdc24b12abca4662"

# gramscii - simple editor for ASCII box-and-arrow charts
.POSIX:

include config.mk

SRC = gramscii.c
INC = config.h

all: options gramscii

options:
	@echo "-+- build options -+-"
	@echo "PREFIX  = $(PREFIX)"
	@echo "CFLAGS  = $(CFLAGS)"
	@echo "LDFLAGS = $(LDFLAGS)"
	@echo "CC      = $(CC)"
	@echo "-+-+-+-+-+-+-+-+-+-+-" 
	

gramscii: ${INC}

clean:
	@echo cleaning
	@rm -f $(SRC:.c=)

install: all
	@echo installing executable to ${DESTDIR}${BINDIR}
	@mkdir -p "${DESTDIR}${BINDIR}"
	@cp -f gramscii "${DESTDIR}${BINDIR}"
	@chmod 755 "${DESTDIR}${BINDIR}/gramscii"
	@echo installing manpage to "${DESTDIR}${MANDIR}/man1"
	@mkdir -p "${DESTDIR}${MANDIR}/man1"
	@cp -f gramscii.1 "${DESTDIR}${MANDIR}/man1"
	@chmod 644 "${DESTDIR}${MANDIR}/man1/gramscii.1"

uninstall:
	@echo removing executable file from ${DESTDIR}${BINDIR}
	@rm -f "${DESTDIR}${BINDIR}/gramscii"
	@echo removing manpage from "${DESTDIR}${MANDIR}/man1"
	@rm -f "${DESTDIR}${MANDIR}/man1/gramscii.1"


0

HTTP/1.0 500 Internal Server Error
Date: Mon, 04 May 2026 05:06:22 GMT
Server: OpenBSD httpd
Connection: close
Content-Type: text/html
Content-Length: 518

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>500 Internal Server Error</title>
<style type="text/css"><!--
body { background-color: white; color: black; font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif; }
hr { border: 0; border-bottom: 1px dashed; }
@media (prefers-color-scheme: dark) {
body { background-color: #1E1F21; color: #EEEFF1; }
a { color: #BAD7FF; }
}
--></style>
</head>
<body>
<h1>500 Internal Server Error</h1>
<hr>
<address>OpenBSD httpd</address>
</body>
</html>
