diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-10-07 16:16:30 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-10-07 16:16:30 +0200 |
commit | 9128c38e0fcb4d46504f72b33f1eb0574247f681 (patch) | |
tree | 04e978bf001041876e82e43a986454d3864f9ef0 /Makefile |
initial commit
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e2c7633 --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +ifndef DPP_ROOT +$(error DPP_ROOT is undefined) +endif + +include $(DPP_ROOT)/Makefile.inc + +DRIVER_NAME = driver-kmem +DRIVER_OBJECTS = $(DRIVER_NAME).o memory.o +DRIVER_TARGET = $(DRIVER_NAME).sys + +all: $(DRIVER_TARGET) + +install: $(DRIVER_TARGET) + $(call INSTALL_EXEC_SIGN,$(DRIVER_TARGET)) + $(INSTALL) $(DRIVER_NAME).bat $(DESTDIR) + +clean: + rm -f $(DRIVER_OBJECTS) $(DRIVER_TARGET) + +%.o: %.cpp + $(call BUILD_CPP_OBJECT,$<,$@) + +$(DRIVER_TARGET): $(DRIVER_OBJECTS) + $(call LINK_CPP_KERNEL_TARGET,$(DRIVER_OBJECTS),$@) |