Added additional build system: make, utop existing unity build.

This commit is contained in:
Emil 2023-08-02 07:45:58 -06:00
parent e0251bd4e0
commit 750bcb00a1
2 changed files with 47 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
build
**/*.out **/*.out
**/*.o **/*.o

46
Makefile Normal file
View File

@ -0,0 +1,46 @@
.POSIX: # Just kidding, use GNU Make
# OVERRIDE ME #
PREFIX := .
PROGN := probotic
CC := cc
CFLAGS := -std=c99 -Wall -Wextra -Wpedantic
CPPFLAGS := -I/usr/bin/ircclient/
LDFLAGS := -lircclient
SRC.DIR := src
OBJ.DIR := $(PREFIX)/obj
# INC.DIR := include
OBJ := $(addprefix $(OBJ.DIR)/, fetch.c main.c)
# HDR :=
VPATH := $(INC.DIR) $(SRC.DIR) $(OBJ.DIR)
ifeq ($(DEBUG),1)
CFLAGS += -Og -g3
else
CFLAGS += -O3 -flto=auto -fomit-frame-pointer
endif
ifdef SAN
CFLAGS += -fsanitize=$(SAN)
endif
CPPFLAGS += -DPROGN="\"$(PROGN)\""
$(OBJ.DIR)/%.o: $(SRC.DIR)/%.c
$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
$(PREFIX)/$(PROGN): $(VPATH) $(PREFIX) $(HDR) | $(OBJ)
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $| $(LDFLAGS)
# include/config.h: include/config.mk.h
# cp -f $< $@
$(VPATH) $(PREFIX):
mkdir -p $@
clean:
$(RM) $(OBJ) $(PROGN)