diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -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 |