~ubuntu-branches/debian/sid/c2hs/sid

« back to all changes in this revision

Viewing changes to c2hs/state/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Arjan Oosting
  • Date: 2006-12-14 00:06:12 UTC
  • mfrom: (3.1.5 feisty)
  • Revision ID: james.westby@ubuntu.com-20061214000612-s7mds83cxqkgv1bj
Tags: 0.14.5-6
* debian/patches/09_replace-deprecated-withObject: Replace all
  occurrences of 'withObject' with 'with' as the deprecated 'withObject'
  was removed with GHC 6.6. (Closes: #402979)
* Set the urgency to medium as the above bug decreases c2hs usefulness
  with GHC 6.6 dramatically. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#  C -> Haskell Compiler: makefile for the C2HS state
2
 
#
3
 
#  Author : Manuel M T Chakravarty
4
 
#  Created: 6 March 1999
5
 
#
6
 
#  Version $Revision: 1.2 $ from $Date: 2002/03/12 12:39:16 $
7
 
#
8
 
#  Copyright (c) [1999..2002] Manuel M T Chakravarty
9
 
#
10
 
#  This file is free software; you can redistribute it and/or modify
11
 
#  it under the terms of the GNU General Public License as published by
12
 
#  the Free Software Foundation; either version 2 of the License, or
13
 
#  (at your option) any later version.
14
 
#
15
 
#  This file is distributed in the hope that it will be useful,
16
 
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
#  GNU General Public License for more details.
19
 
#
20
 
#  = DOCU =====================================================================
21
 
#
22
 
 
23
 
#  ***************************************
24
 
#  !!! This makefile requires GNU make !!!
25
 
#  ***************************************
26
 
 
27
 
# info for this part: its package, name, sources and objects files (must be 
28
 
# before the include due to conditionals etc in `common.mk')
29
 
#
30
 
PACKAGE = c2hs
31
 
PART    = state
32
 
SRCS    = C2HSState.hs Switches.hs
33
 
OBJS    = $(patsubst %.hs,%.o,$(SRCS))
34
 
 
35
 
include ../../mk/common.mk
36
 
 
37
 
 
38
 
# make all object files
39
 
#
40
 
objs: $(OBJS)
41
 
 
42
 
# make all
43
 
#
44
 
all: objs
45
 
 
46
 
# misc targets
47
 
#
48
 
.PHONY: clean cleanhi
49
 
 
50
 
clean:
51
 
        -$(RM) *.o
52
 
cleanhi:
53
 
        -$(RM) *.hi