aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-07-28 16:53:41 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-07-28 18:27:51 +0200
commit6c602fd542b7f97e3a23ef27c3839656906c98de (patch)
tree31ca34bd5ed53a52ae3181878b9ebbe9c92b15f8 /Makefile
parent3a3cbeecc113daf992de838a39569f6c81876dbe (diff)
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 <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
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