mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Only build benchmarks when given BENCH=1 to make.
This commit is contained in:
parent
63cde07004
commit
ac81da7609
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -8,6 +8,10 @@ ifndef O
|
|||
MFLAGS:=0=$(O)
|
||||
endif
|
||||
|
||||
ifeq ($(BENCH),1)
|
||||
EXTRAMODULES:=$(EXTRAMODULES) bench
|
||||
endif
|
||||
|
||||
ifndef SYSROOT
|
||||
SYSROOT:=$(shell pwd)/sysroot
|
||||
MFLAGS:=SYSROOT=$(SYSROOT)
|
||||
|
@ -16,7 +20,7 @@ endif
|
|||
REMOTE=192.168.2.6
|
||||
REMOTEUSER=sortie
|
||||
REMOTECOPYDIR:=/home/$(REMOTEUSER)/Desktop/MaxsiOS
|
||||
MODULES=libmaxsi games mkinitrd utils bench sortix
|
||||
MODULES=libmaxsi games mkinitrd utils $(EXTRAMODULES) sortix
|
||||
|
||||
VERSION=0.5dev
|
||||
DEBNAME:=sortix_$(VERSION)_$(CPU)
|
||||
|
|
Loading…
Reference in a new issue