8062596d23
FreeBSD (and at least NetBSD as well) still use hw.ncpu without deprecating it, contrary to apple.
11 lines
163 B
Makefile
11 lines
163 B
Makefile
ASM = nasm
|
|
CFLAGS += -fPIC -DMT_ENABLED
|
|
LDFLAGS += -lpthread
|
|
ASMFLAGS += -DNOPREFIX
|
|
ifeq ($(ENABLE64BIT), Yes)
|
|
ASMFLAGS += -f elf64
|
|
else
|
|
ASMFLAGS += -f elf
|
|
endif
|
|
|