Merge pull request #235 from whitequark/master

Make iceprog optional
This commit is contained in:
Clifford Wolf 2019-08-31 21:54:45 +02:00 committed by GitHub
commit 04f1eb78ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,10 @@
SUBDIRS = icebox icepack iceprog icemulti icepll icetime icebram
include config.mk
SUBDIRS := icebox icepack icemulti icepll icebram icetime
ifeq ($(ICEPROG),1)
SUBDIRS += iceprog
endif
all: $(addsuffix .all,$(SUBDIRS))
$(addsuffix .all,$(SUBDIRS)):
$(MAKE) -C $(basename $@) all

View File

@ -1,5 +1,6 @@
PREFIX ?= /usr/local
DEBUG ?= 0
ICEPROG ?= 1
CXX ?= clang++
CC ?= clang