From 365d2c695414f0319b27e22fa7ddb53df735055b Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sat, 4 Jan 2025 17:00:26 -0600 Subject: [PATCH] Properly clean the generated dropviews.sql file --- make_files/things.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_files/things.mk b/make_files/things.mk index 4b11c01..07add29 100644 --- a/make_files/things.mk +++ b/make_files/things.mk @@ -129,7 +129,7 @@ destroytables: $(PSQL_DEPENDS) droptables.sql ## clean-db Clean up the files produced by make .PHONY: clean-db clean-db: - rm -rf $(TARGETS) droptables.sql + rm -rf $(TARGETS) droptables.sql dropviews.sql ## createthings.sql ## A file with the SQL to make all the database objects -- 2.34.1