enby/config.mk

16 lines
304 B
Makefile
Raw Normal View History

# -*- make -*-
# === C Compiler Configuration ===
CC := gcc -xc -std=gnu23
CFLAGS := -Wall -Wextra -O
CDEBUG := -g
# === C++ Compiler Configuration ===
CXX := gcc -xc++ -std=gnu++17 -lstdc++ -shared-libgcc
CXXFLAGS := -Wall -Wextra -O
CXXDEBUG := -g
# === Linker Configuration ===
LD := ld
LDFLAGS :=