Added arch detection to makefile for x86 and x86_64
This commit is contained in:
parent
0f4c0b95e2
commit
ccf293906a
9
Makefile
9
Makefile
@ -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
BIN
libs/x86_64/libsepol.a
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user