瀏覽代碼

Initialize all make options

master
Arun Prakash Jana 4 年之前
父節點
當前提交
fbd5e77ec1
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: A75979F35C080412
共有 2 個檔案被更改,包括 12 行新增2 行删除
  1. +6
    -1
      Makefile
  2. +6
    -1
      misc/haiku/Makefile

+ 6
- 1
Makefile 查看文件

@@ -11,9 +11,14 @@ CP ?= cp

CFLAGS_OPTIMIZATION ?= -O3

O_DEBUG := 0
O_DEBUG := 0 # debug binary
O_NORL := 0 # no readline support
O_PCRE := 0 # link with PCRE library
O_NOLOC := 0 # no locale support
O_NOMOUSE := 0 # no mouse support
O_NOBATCH := 0 # no built-in batch renamer
O_NOFIFO := 0 # no FIFO previewer support
O_CTX8 := 0 # enable 8 contexts

# convert targets to flags for backwards compatibility
ifneq ($(filter debug,$(MAKECMDGOALS)),)


+ 6
- 1
misc/haiku/Makefile 查看文件

@@ -9,9 +9,14 @@ CP ?= cp

CFLAGS_OPTIMIZATION ?= -O3

O_DEBUG := 0
O_DEBUG := 0 # debug binary
O_NORL := 0 # no readline support
O_PCRE := 0 # link with PCRE library
O_NOLOC := 0 # no locale support
O_NOMOUSE := 0 # no mouse support
O_NOBATCH := 0 # no built-in batch renamer
O_NOFIFO := 0 # no FIFO previewer support
O_CTX8 := 0 # enable 8 contexts

# convert targets to flags for backwards compatibility
ifneq ($(filter debug,$(MAKECMDGOALS)),)


Loading…
取消
儲存