From 464cca35825a02541efd46cfd3af91146c118d01 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Fri, 26 May 2023 18:08:09 +0200
Subject: Becoming aggressive

---
 makefile | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

(limited to 'makefile')

diff --git a/makefile b/makefile
index fff2aa8..56e0fc8 100644
--- a/makefile
+++ b/makefile
@@ -7,7 +7,6 @@ TG = ctags
 BUILD = ${CURDIR}/build
 SRC = ${CURDIR}/src
 INC = ${CURDIR}/inc
-LIB = ${CURDIR}/lib
 SRCS = $(wildcard $(SRC)/*.c)
 OBJS = $(patsubst $(SRC)/%.c, $(BUILD)/%.o, $(SRCS))
 
@@ -15,13 +14,6 @@ CFLAGS_DEBUG = -Wno-error -g -O0 -Wno-unused -fsanitize=address,undefined,leak
 CFLAGS_WARNINGS = -Wall -Wextra -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual -Wswitch-default -Wswitch-enum -Wunreachable-code -Wundef -Wold-style-definition -pedantic -Wno-switch-enum
 CFLAGS = $(CFLAGS_WARNINGS) -std=c99 -Ofast -I$(INC)
 
-ifdef TEST # TODO: Somehow clean automagically
-CFLAGS += -DTEST -DNTESTS=$(TEST)
-ifdef START
-CFLAGS += -DSTARTTEST=$(START)
-endif
-endif
-
 ifdef DEBUG # TODO: Somehow clean automagically
 CFLAGS += $(CFLAGS_DEBUG)
 endif
@@ -30,7 +22,9 @@ ifeq ($(PREFIX),)
     PREFIX := /usr/local
 endif
 
-all: compile sync
+all: compile
+
+full: all sync
 
 compile: $(BUILD) $(OBJS) $(BUILD)/calm
 
-- 
cgit v1.2.3