From: PHO Date: Tue, 10 Feb 2009 14:49:31 +0000 (+0900) Subject: The skelton. X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=hxt-compile.git;a=commitdiff_plain;h=52451180867f9eaab5bea8c88f9485ecdd415621 The skelton. --- 52451180867f9eaab5bea8c88f9485ecdd415621 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e854484 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +Setup +*.hi +*.o +dist \ No newline at end of file diff --git a/Main.hs b/Main.hs new file mode 100644 index 0000000..d82a4bd --- /dev/null +++ b/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = return () diff --git a/Setup.lhs b/Setup.lhs new file mode 100644 index 0000000..5bde0de --- /dev/null +++ b/Setup.lhs @@ -0,0 +1,3 @@ +#!/usr/bin/env runhaskell +> import Distribution.Simple +> main = defaultMain diff --git a/Text/XML/HXT/Compilation.hs b/Text/XML/HXT/Compilation.hs new file mode 100644 index 0000000..9b2f105 --- /dev/null +++ b/Text/XML/HXT/Compilation.hs @@ -0,0 +1,4 @@ +module Text.XML.HXT.Compilation + ( + ) + where diff --git a/hxt-compile.cabal b/hxt-compile.cabal new file mode 100644 index 0000000..a9124df --- /dev/null +++ b/hxt-compile.cabal @@ -0,0 +1,20 @@ +Name: hxt-compile +Version: 0.1 +Synopsis: +Description: +Category: XML +License: PublicDomain +Author: PHO +Maintainer: PHO +Cabal-Version: >= 1.2 +Build-Type: Simple + +Library + Build-Depends: + base + Exposed-Modules: + Text.XML.HXT.Compilation + +Executable hxt-compile + Main-Is: Main.hs + GHC-Options: -Wall