diff options
author | Timo Teras <timo.teras@iki.fi> | 2008-04-22 08:16:26 +0000 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2008-04-22 08:16:26 +0000 |
commit | 219a1b2ee8f4c3c2caf57e79bcb9780e32da7155 (patch) | |
tree | 0a4d20d18de572e5eba37138ca5176fee051d981 /Makefile | |
parent | 384c2f1d94282ff5564a5f6c5ab9e51c975f83a6 (diff) | |
download | apk-tools-219a1b2ee8f4c3c2caf57e79bcb9780e32da7155.tar.gz apk-tools-219a1b2ee8f4c3c2caf57e79bcb9780e32da7155.tar.bz2 apk-tools-219a1b2ee8f4c3c2caf57e79bcb9780e32da7155.tar.xz apk-tools-219a1b2ee8f4c3c2caf57e79bcb9780e32da7155.zip |
Overwriting of bb files, apk_create (from old apk-tools), chdir changes,
other stuff.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |