From 6586ff05f2d47452cea96261f3cf5c940d1e0854 Mon Sep 17 00:00:00 2001 From: Tim Konick Date: Tue, 12 Mar 2024 01:39:41 -0400 Subject: [PATCH] Haskell -dynamic linker flag --- Haskell/haskell_1-10/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Haskell/haskell_1-10/Makefile b/Haskell/haskell_1-10/Makefile index fa1a6e7..44a6022 100644 --- a/Haskell/haskell_1-10/Makefile +++ b/Haskell/haskell_1-10/Makefile @@ -3,7 +3,7 @@ TARGET=$(if $(problem),$(problem)).hs default: - ghc $(TARGET) -o $(if $(problem),$(problem)) + ghc $(TARGET) -o $(if $(problem),$(problem)) -dynamic clean: $(shell rm *.o && rm *.hi)