mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-27 12:05:30 +00:00
14 lines
251 B
Makefile
14 lines
251 B
Makefile
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
|
|
|
|
all: sepolicy-inject
|
|
|
|
sepolicy-inject: sepolicy-inject.c
|