CppGoof/makefile

95 lines
1.9 KiB
Makefile
Raw Permalink Normal View History

2024-04-11 23:38:27 +02:00
#dd Compiler and assembler
CC = gcc
CXX = g++
AS = as
LD = ld
OBJDUMP = objdump
SIZE = size
CFLAGS += -std=c++23
CFLAGS += -Wall
CFLAGS += -Wextra
CFLAGS += -Werror
CFLAGS += -Wno-unused-parameter
CFLAGS += -Wno-unused-variable
CFLAGS += -Wno-unused-function
CFLAGS += -Wno-unused-but-set-variable
CFLAGS += -Wno-unused-value
CFLAGS += -Wno-unused-label
CFLAGS += -Wno-unused-result
CFLAGS += -Wno-unused-local-typedefs
CFLAGS += -Wno-unused-const-variable
CFLAGS += -Wno-unused-macros
2024-04-12 00:27:56 +02:00
CFLAGS += -lsodium
2024-04-11 23:38:27 +02:00
CFLAGS += -O3
CFLAGS += -g
GITHASH = $(shell git rev-parse --short HEAD)
# Specify the target binary (call it whatever)
TARGET = build/program
TARGET_TAR = $(TARGET)-$(GITHASH).tar.zst
TARGET_SIG = $(TARGET_TAR).minisig
SRCS := $(wildcard src/*.cpp)
HDRS := $(wildcard src/*.hpp)
# Specify the object files in the build directory
OBJS := $(patsubst src/%.cpp,build/%.o,$(SRCS))
# Print green after success
2024-04-11 23:38:27 +02:00
all: $(TARGET)
make size
@echo -e "\033[0;32m[Success]\033[0m"
2024-04-11 23:38:27 +02:00
# For convenience
run: $(TARGET)
@./$(TARGET)
# Create the build directory
mkbuilddir:
@mkdir -p build
# Link the object files into the target binary
$(TARGET): $(OBJS)
@$(CXX) $(CFLAGS) -o $@ $^
@echo -e "LD \t$^"
# Compile the source files into object files
build/%.o: src/%.cpp | mkbuilddir
@$(CXX) $(CFLAGS) -c -o $@ $< || (rm -f $@ && exit 1)
@echo -e "CC \t$<"
# Print the size of the target binary
size: $(TARGET)
$(SIZE) $(TARGET)
# Format with clang-format
format: $(SRCS) $(HDRS)
clang-format -i $^
# Clean up the build directory
clean:
rm -r build
rm -f build/*.o
rm -f $(TARGET)*
# Create a signed release
tar: $(TARGET_TAR)
# Sign the tar
sign: $(TARGET_SIG)
# Check the assembly
asm: $(TARGET)
$(OBJDUMP) -d $(TARGET)
2024-04-11 23:38:27 +02:00
$(TARGET_SIG): $(TARGET_TAR)
minisign -Sm $<
$(TARGET_TAR): $(TARGET)
strip $<
tar --zstd -cvf $@ $<
.PHONY: all clean size mkbuilddir run tar sign