From 6c602fd542b7f97e3a23ef27c3839656906c98de Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Wed, 28 Jul 2021 16:53:41 +0200 Subject: Fixed ctor/dtor issue allowing use of static qualifiers for non primitives. * split CRT in a C and C++ part * use "fake" entry point to init CRT and set a DriverUnload routine for de-init * added -Wl,--exclude-all-symbols to DRIVER_LDFLAGS Signed-off-by: Toni Uhlig --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ec29919..de851e0 100644 --- a/Makefile +++ b/Makefile @@ -51,9 +51,9 @@ distclean: clean clean: $(MAKE) -C $(DPP_ROOT) -f Makefile.deps clean - rm -f $(1_OBJECTS) $(1_TARGET) - rm -f $(2_OBJECTS) $(2_TARGET) - rm -f $(3_OBJECTS) $(3_TARGET) + rm -f $(1_OBJECTS) $(1_TARGET) $(1_TARGET).map + rm -f $(2_OBJECTS) $(2_TARGET) $(2_TARGET).map + rm -f $(3_OBJECTS) $(3_TARGET) $(3_TARGET).map .PHONY: all install distclean clean .DEFAULT_GOAL := all -- cgit v1.2.3