Makefile variable magic

This commit is contained in:
Jindra Dolezy
2015-04-12 13:35:50 +02:00
parent 2ec0e15427
commit 4331360905
2 changed files with 14 additions and 14 deletions
+5 -5
View File
@@ -1,12 +1,12 @@
GZIP_COMPRESSION ?= "no"
USE_HEATSHRINK ?= "yes"
GZIP_COMPRESSION ?= no
USE_HEATSHRINK ?= yes
CFLAGS=-I../../lib/heatshrink -I.. -std=gnu99
ifeq ($(GZIP_COMPRESSION),"yes")
ifeq ("$(GZIP_COMPRESSION)","yes")
CFLAGS += -DESPFS_GZIP
endif
ifeq ($(USE_HEATSHRINK),"yes")
ifeq ("$(USE_HEATSHRINK)","yes")
CFLAGS += -DESPFS_HEATSHRINK
endif
@@ -14,7 +14,7 @@ OBJS=main.o heatshrink_encoder.o
TARGET=mkespfsimage
$(TARGET): $(OBJS)
ifeq ($(GZIP_COMPRESSION),"yes")
ifeq ("$(GZIP_COMPRESSION)","yes")
$(CC) -o $@ $^ -lz
else
$(CC) -o $@ $^