summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis Burda <dev@sinitax.com>2025-11-27 07:54:29 +0100
committerLouis Burda <dev@sinitax.com>2025-11-27 07:54:29 +0100
commit2ef11f578181d9e71672a3060bad15f02933b35d (patch)
tree5fe763bdc560b73b7609befe6e178a7a084ef019
parent1113d1a57e92f96b6ade240cf6e973ba25c3b4f4 (diff)
downloadtquery-2ef11f578181d9e71672a3060bad15f02933b35d.tar.gz
tquery-2ef11f578181d9e71672a3060bad15f02933b35d.zip
Remove just build config
-rw-r--r--build.jst.tmpl34
-rwxr-xr-xconfigure3
2 files changed, 0 insertions, 37 deletions
diff --git a/build.jst.tmpl b/build.jst.tmpl
deleted file mode 100644
index 35e0e0b..0000000
--- a/build.jst.tmpl
+++ /dev/null
@@ -1,34 +0,0 @@
-#default PREFIX /usr/local
-#default BINDIR /bin
-#default CC gcc
-
-#ifdef DEBUG
-#define OPT_CFLAGS -Og -g
-#else
-#define OPT_CFLAGS -O2
-#endif
-
-cflags = -std=c99 -D_XOPEN_SOURCE=700 #{OPT_CFLAGS} #{EXTRA_CFLAGS}
- -Wunused-function -Wunused-variable -Wconversion -Wsign-compare
-ldlibs = -lcurses
-
-rule cc
- #{CC} -o $out $in $cflags $ldlibs
-
-target tquery
- cc tquery.c
-
-command clean
- rm -rf build
-
-command cleanall
- just clean
-
-command install
- install -m755 tquery -t "#{DESTDIR}#{PREFIX}#{BINDIR}"
-
-command uninstall
- rm -f "#{DESTDIR}#{PREFIX}#{BINDIR}/tquery"
-
-command all
- just tquery
diff --git a/configure b/configure
deleted file mode 100755
index 9b3f0eb..0000000
--- a/configure
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-tmpl "$@" build.jst.tmpl > build.jst