enabling Makefile configuration with build folder support

This commit is contained in:
Blaise Tine 2024-03-30 02:28:39 -07:00
parent 99c91987fb
commit 6b81b26ffc
130 changed files with 1829 additions and 796 deletions

View file

@ -1,5 +1,10 @@
PROJECT = vx_malloc
ROOT_DIR := $(realpath ../../..)
include $(ROOT_DIR)/config.mk
SRCS = main.cpp
PROJECT := vx_malloc
SRC_DIR := $(VORTEX_HOME)/tests/unittest/$(PROJECT)
SRCS := $(SRC_DIR)/main.cpp
include ../common.mk