Added arch detection to makefile for x86 and x86_64

This commit is contained in:
superr 2015-11-11 14:27:53 -06:00
parent 0f4c0b95e2
commit ccf293906a
4 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
PREFIX ?= $(DESTDIR)/usr
BINDIR ?= $(PREFIX)/bin
LIBDIR ?= $(PREFIX)/lib/x86_64-linux-gnu
LBITS := $(shell getconf LONG_BIT)
ifeq ($(LBITS),64)
LIBDIR ?= libs/x86_64
else
LIBDIR ?= libs/x86
endif
CFLAGS ?= -g -Wall -Werror -Wshadow -O2 -pipe -std=gnu11
LDLIBS=$(LIBDIR)/libsepol.a

Binary file not shown.

BIN
libs/x86_64/libsepol.a Normal file

Binary file not shown.