From 83f31e3c8b130ba108006f125957e9896f6a9d14 Mon Sep 17 00:00:00 2001 From: Duncan Coutts Date: Sat, 26 Jan 2008 23:33:08 +0000 Subject: [PATCH] Remove examples dir which seemed rather pointless --- examples/Makefile | 30 ------------------------------ examples/hapax.hs | 8 -------- 2 files changed, 38 deletions(-) delete mode 100644 examples/Makefile delete mode 100644 examples/hapax.hs diff --git a/examples/Makefile b/examples/Makefile deleted file mode 100644 index 820cd1e50f5..00000000000 --- a/examples/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# ----------------------------------------------------------------------------- - -TOP = ../.. -include $(TOP)/mk/boilerplate.mk - -# -# Disable 'make boot' -# -NO_BOOT_TARGET=YES - -WAYS= - -# ----------------------------------------------------------------------------- - -EXAMPLES := $(wildcard *.hs) -BINS := $(EXAMPLES:.hs=$(exeext)) -CLEAN_FILES += $(BINS) - -HC = $(GHC_INPLACE) -MKDEPENDHS = $(GHC_INPLACE) -SRC_HC_OPTS += -package Cabal - -all:: $(BINS) - -$(BINS): %$(exeext): %.hs - $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $< - -# ----------------------------------------------------------------------------- - -include $(TOP)/mk/target.mk diff --git a/examples/hapax.hs b/examples/hapax.hs deleted file mode 100644 index 0de52a144d2..00000000000 --- a/examples/hapax.hs +++ /dev/null @@ -1,8 +0,0 @@ --- Simple general-purpose Cabal setup script - -module Main (main) where - -import Distribution.Simple (defaultMainWithHooks, defaultUserHooks) - -main :: IO () -main = defaultMainWithHooks defaultUserHooks