# @configure_input@ -*-makefile-*- # ============================================================================ # The Haskell Ports Library: Autoconf-mangled makefile # # Author : Manuel M. T. Chakravarty # Derived: 24 May 2000 # # Version $Revision: 1.2 $ from $Date: 2000/06/04 11:25:22 $ # # Copyright (c) 2000 Manuel M. T. Chakravarty # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # = DOCU ===================================================================== # # * Derived from the corresponding Gtk+HS & C->HS file. # # top level directory # TOP = @TOP@ # *NIX tools # AR = @AR@ BASENAME= @BASENAME@ GREP = @GREP@ INSTALL = @INSTALL@ LN = @LN@ SED = @SED@ TAR = @TAR@ TOUCH = @TOUCH@ INSTALL_PROGRAM = $(INSTALL) INSTALL_DATA = $(INSTALL) -m 0644 srcdir = @srcdir@ top_srcdir = @top_srcdir@ prefix = @prefix@ exec_prefix= @exec_prefix@ bindir = @bindir@ sbindir = @sbindir@ libexecdir = @libexecdir@ datadir = @datadir@ sysconfdir = @sysconfdir@ sharedstatedir= @sharedstatedir@ localstatedir = @localstatedir@ libdir = @libdir@ infodir = @infodir@ mandir = @mandir@ includedir = @includedir@ oldincludedir = /usr/include docdir = $(datadir)/doc DESTDIR = PACKAGE = ports PCKVERSION = @PORTS_VERSION@ pkgdatadir = $(datadir)/$(PACKAGE)-$(PCKVERSION) pkgdocdir = $(docdir)/$(PACKAGE)-$(PCKVERSION) pkglibdir = $(libdir)/$(PACKAGE)-$(PCKVERSION)/$(SYS) pkgimportdir = $(pkglibdir)/import # Haskell compiler: # # * compiler flags; can be extended in host makefile via EXTRAHCFLAGS # HC = @HC@ SYS = @SYS@ HCFLAGS = @HCFLAGS@ $(EXTRAHCFLAGS) # linker flags # # * it is usually better to have the $(EXTRALDFLAGS) first due to the order # in which ld likes to see the -l options # * $(HLDFLAGS) is cleaned up for consumption by the Haskell compiler # LDFLAGS = $(EXTRALDFLAGS) @LIBS@ HLDFLAGS = $(filter -L% -l% -optl%, $(LDFLAGS))