From 141fea8d08cb93beb3f929334f978eb484a24c37 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 23 Dec 2022 10:54:34 -0800 Subject: [PATCH] Use del on Windows --- Makefile.win | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile.win b/Makefile.win index 5cb9d6b..c0ca069 100644 --- a/Makefile.win +++ b/Makefile.win @@ -59,12 +59,12 @@ installcheck: "$(BINDIR)\pg_regress" --bindir="$(BINDIR)" $(REGRESS_OPTS) $(REGRESS) uninstall: - rm -f "$(PKGLIBDIR)\$(SHLIB)" - rm -f "$(SHAREDIR)\extension\$(EXTENSION).control" - rm -f "$(SHAREDIR)\extension\vector--*.sql" + del /f "$(PKGLIBDIR)\$(SHLIB)" + del /f "$(SHAREDIR)\extension\$(EXTENSION).control" + del /f "$(SHAREDIR)\extension\vector--*.sql" clean: - rm -f $(SHLIB) $(EXTENSION).lib $(EXTENSION).exp - rm -f $(OBJS) - rm -rf sql\$(EXTENSION)--$(EXTVERSION).sql - rm -rf results regression.diffs regression.out tmp_check tmp_check_iso log output_iso + del /f $(SHLIB) $(EXTENSION).lib $(EXTENSION).exp + del /f $(OBJS) + del /f sql\$(EXTENSION)--$(EXTVERSION).sql + del /f /s /q results regression.diffs regression.out tmp_check tmp_check_iso log output_iso