summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTimo Teras <timo.teras@iki.fi>2008-04-22 08:16:26 +0000
committerTimo Teras <timo.teras@iki.fi>2008-04-22 08:16:26 +0000
commit219a1b2ee8f4c3c2caf57e79bcb9780e32da7155 (patch)
tree0a4d20d18de572e5eba37138ca5176fee051d981 /Makefile
parent384c2f1d94282ff5564a5f6c5ab9e51c975f83a6 (diff)
downloadapk-tools-219a1b2ee8f4c3c2caf57e79bcb9780e32da7155.tar.bz2
apk-tools-219a1b2ee8f4c3c2caf57e79bcb9780e32da7155.tar.xz
Overwriting of bb files, apk_create (from old apk-tools), chdir changes,
other stuff.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ee4ca1e..7764fcc 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@
# under the terms of the GNU General Public License version 3 as published
# by the Free Software Foundation. See http://www.gnu.org/ for details.
-VERSION := 2.0-pre0
+VERSION := 2.0_pre0
SVN_REV := $(shell svn info 2> /dev/null | grep ^Revision | cut -d ' ' -f 2)
ifneq ($(SVN_REV),)
@@ -20,7 +20,7 @@ CC=gcc
INSTALL=install
INSTALLDIR=$(INSTALL) -d
-CFLAGS=-O2 -g -D_GNU_SOURCE -Werror -Wall -Wstrict-prototypes -std=gnu99 \
+CFLAGS=-g -D_GNU_SOURCE -Werror -Wall -Wstrict-prototypes -std=gnu99 \
-DAPK_VERSION=\"$(FULL_VERSION)\"
LDFLAGS=-g -nopie
LIBS=-lpthread
@@ -31,12 +31,12 @@ LDFLAGS+=-static
endif
DESTDIR=
-SBINDIR=/usr/sbin
+SBINDIR=/sbin
CONFDIR=/etc/apk
MANDIR=/usr/share/man
DOCDIR=/usr/share/doc/apk
-SUBDIRS=src
+SUBDIRS=src scripts
.PHONY: compile install clean all