From 8909986b89eaac74bb4cd8dc7019f96e4f650470 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Mon, 29 Jun 2026 20:29:36 -0400 Subject: Initial annotations --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index baa81e8..0b5d02f 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ EXE ?= pit CC ?= gcc AR ?= ar -CHK_SOURCES ?= src/main.c $(SRCS) override CPPFLAGS += -MMD -MP override CFLAGS += -Oz -fPIC --std=c99 -g -Ideps/ -Isrc/ -Iinclude/ -Wall -Wextra -Wpedantic -Wconversion -Wformat-security -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wnull-dereference -Wfloat-equal -Wundef -Wpointer-arith -Wbad-function-cast -Wlogical-op -Wmissing-braces -Wcast-align -Wstrict-overflow=5 -fwrapv # -ftrapv override LDFLAGS += -g -static @@ -16,6 +15,9 @@ SRCS_NATIVE := src/native.c OBJECTS_NATIVE := $(SRCS_NATIVE:src/%.c=$(BUILD)/%.o) LIB_NATIVE := libcolonq-pit-native.a +SRCS := src/main.c $(SRCS_CORE) $(SRCS_NATIVE) +CHK_SOURCES ?= $(SRCS) + prefix ?= /usr/local exec_prefix ?= $(prefix) bindir ?= $(exec_prefix)/bin -- cgit v1.2.3