summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-06-15 17:10:59 -0600
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-06-15 18:02:55 -0600
commit7b32b8e5eb7cdc8939042ab665f1b80f03036132 (patch)
treeaf4739cb2ce2cfced5947fe3ad09f35fe51bb25f /Makefile
parent5a1241643d4360fa8acc5a1bb9dfbd4a5c691c49 (diff)
Makefiles: pull the config section into config.mk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 2 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index c621a09..be453fb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,5 @@
-# Configuration
-DESTDIR=
-
-#prefix=/usr/local
-prefix=/usr
-exec_prefix=$(prefix)
-datarootdir=$(prefix)/share
-
-bindir=$(exec_prefix)/bin
-sbindir=$(exec_prefix)/sbin
-#sysconfdir=$(prefix)/etc
-sysconfdir=/etc
-datadir=$(datarootdir)
-docdir=$(datarootdir)/doc
+topdir = .
+include config.mk
################################################################################