Files
lk/lib/libcpp/rules.mk
Travis Geiselbrecht ebdc1ea077 [lib][libcpp] move c++ specific shims out of libc and heap
Consolidate into a single library. Also renames legacy new.h to
the more standard new.

Possible that some C++ code will need to get this added to their
MODULE_DEPS.
2021-04-02 19:28:58 -07:00

11 lines
176 B
Makefile

LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
MODULE_DEPS :=
MODULE_SRCS += $(LOCAL_DIR)/new.cpp
MODULE_SRCS += $(LOCAL_DIR)/pure_virtual.cpp
include make/module.mk