Fix makefile conditions
Change-Id: I7e36cec5e3dd86b3220a8a14561596aaa81fdefb
This commit is contained in:
parent
83cb2e5dae
commit
215ac639ff
1 changed files with 3 additions and 3 deletions
|
@ -63,9 +63,9 @@ all: $(DEPFILE) build
|
|||
# dependencies and compile rules
|
||||
include $(TOOLSDIR)/tools.make
|
||||
|
||||
ifneq (,$(findstring checkwps,$(APP_TYPE)))
|
||||
ifneq (,$(findstring database,$(APP_TYPE)))
|
||||
ifneq (,$(findstring warble,$(APP_TYPE)))
|
||||
ifeq (,$(findstring checkwps,$(APP_TYPE)))
|
||||
ifeq (,$(findstring database,$(APP_TYPE)))
|
||||
ifeq (,$(findstring warble,$(APP_TYPE)))
|
||||
include $(FIRMDIR)/firmware.make
|
||||
include $(ROOTDIR)/apps/bitmaps/bitmaps.make
|
||||
ifeq (,$(findstring bootloader,$(APPSDIR)))
|
||||
|
|
Loading…
Reference in a new issue