blob: 0fab32f6834d8dc7d2e75ab5949370ff802c1bbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#-----------------------------------------------------------------------------
# $Id: Makefile-OLD,v 1.1 2001/07/11 16:06:23 sewardj Exp $
#
# (c) The GHC Team, 1999-2000
#
TOP = .
include $(TOP)/mk/boilerplate.mk
NOT_THESE = CVS mk
NOT_THESE += hill_stk_oflow
# Correctly fails to terminate
NOT_THESE += ipoole_spec_class
# Dialogue style IO
NOT_THESE += areid_pass
# Old-style I/O
NOT_THESE += north_lias
# Deliberately causes divide by zero, and
# we can't catch that yet
NOT_THESE += andy_cherry barton-mangler-bug cvh_unboxing dmgob_native1 dmgob_native2 fast2haskell fexport jtod_circint okeefe_neural
# doesn't compile
NOT_THESE += jeff-bug lennart_array
# compiles but doesn't run
NOT_THESE += dmgob_native1 dmgob_native2
# Native library doens't exist
ifneq "$(HWL_NOFIB_HACK)" ""
NOT_THESE += callback zhang_ccall
# HWL: tmp disabled for testing GUM-merged version (20/3/01)
# don't compile: failed to load interface for `IOExts'
endif
SUBDIRS = $(filter-out $(patsubst %, %/, $(NOT_THESE)), $(wildcard */))
include $(TOP)/mk/test.mk
|