diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
-.PHONY: all build dist install clean doc
+.PHONY: all build dist install test clean doc
 
 all: build
 
 build: dist/setup-config
 	cabal build
 
-dist:
+dist: build
 	cabal sdist
 
 install: build
@@ -15,7 +15,7 @@
 	cabal clean
 
 dist/setup-config: daemonize-doublefork.cabal
-	cabal configure
+	cabal configure --enable-tests
 
 doc: build
 	cabal haddock
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -3,6 +3,12 @@
 
 > Start background Haskell daemons by double-forking
 
+Deprecated
+----------
+
+This package has been deprecated in favour of
+[daemons](http://hackage.haskell.org/package/daemons).
+
 What
 ----
 
diff --git a/daemonize-doublefork.cabal b/daemonize-doublefork.cabal
--- a/daemonize-doublefork.cabal
+++ b/daemonize-doublefork.cabal
@@ -1,9 +1,9 @@
 Name:           daemonize-doublefork
-Version:        0.1.0
-Cabal-Version:  >= 1.6
+Version:        0.1.1
+Cabal-Version:  >= 1.8
 License:        GPL-3
 License-File:   LICENSE
-Stability:      experimental
+Stability:      deprecated
 Author:         Alexandru Scvortov <scvalex@gmail.com>
 Maintainer:     scvalex@gmail.com
 Homepage:       https://github.com/scvalex/daemonize-doublefork
@@ -11,6 +11,9 @@
 Synopsis:       Start background daemons by double-forking
 Build-type:     Simple
 Description:
+        This package has been deprecated in favour of
+        <http://hackage.haskell.org/package/daemons>.
+        .
         Start background daemons by double-forking.
         .
         See "System.Posix.Daemon" for documentation.
