summaryrefslogtreecommitdiff
path: root/utils/pwd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/pwd/Makefile')
-rw-r--r--utils/pwd/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/utils/pwd/Makefile b/utils/pwd/Makefile
new file mode 100644
index 0000000000..326c707641
--- /dev/null
+++ b/utils/pwd/Makefile
@@ -0,0 +1,18 @@
+
+# We don't include any of the boilerplate Makefiles as we are used
+# by configure. GHC should be overridden on the command line to the
+# GHC that you want to use.
+
+GHC=ghc
+
+.PHONY: all clean
+
+all:
+ $(GHC) --make pwd
+
+clean:
+ rm -f *.o
+ rm -f *.hi
+ rm -f pwd
+ rm -f pwd.exe
+