Reorganize codebase #10

Merged
EnumDev merged 23 commits from code_reorganization into develop 2025-04-17 11:49:52 +00:00
Showing only changes of commit d9d85b4943 - Show all commits

View File

@ -1,17 +1,10 @@
SHELL = /bin/bash # Installation paths
PREFIX ?= /usr/local
ifeq ($(PREFIX),) BINDIR ?= $(PREFIX)/bin
PREFIX := /usr/local
endif
ifeq ($(BINDIR),)
BINDIR := $(PREFIX)/bin
endif
ifeq ($(SYSCONFDIR),)
SYSCONFDIR := $(PREFIX)/etc SYSCONFDIR := $(PREFIX)/etc
endif
ifeq ($(GO),) # Compilers and tools
GO := $(shell type -a -P go | head -n 1) GO ?= $(shell which go)
endif
build: build:
mkdir -p build mkdir -p build