Kaynağa Gözat

Merge pull request #347 from rindeal/make-fix

allow multiple make targets being specified at once
master
Mischievous Meerkat GitHub 6 yıl önce
ebeveyn
işleme
f72cf4cee4
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. +3
    -3
      Makefile

+ 3
- 3
Makefile Dosyayı Görüntüle

@@ -14,13 +14,13 @@ O_NORL := 0 # no readline support
O_NOLOC := 0 # no locale support

# convert targets to flags for backwards compatibility
ifeq ($(MAKECMDGOALS),debug)
ifneq ($(filter debug,$(MAKECMDGOALS)),)
O_DEBUG := 1
endif
ifeq ($(MAKECMDGOALS),norl)
ifneq ($(filter norl,$(MAKECMDGOALS)),)
O_NORL := 1
endif
ifeq ($(MAKECMDGOALS),noloc)
ifneq ($(filter noloc,$(MAKECMDGOALS)),)
O_NORL := 1
O_NOLOC := 1
endif


Yükleniyor…
İptal
Kaydet