summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel <g2p.code@gmail.com>2014-05-10 15:38:21 +0200
committerGabriel <g2p.code@gmail.com>2014-05-10 15:38:21 +0200
commit25016feee1aab63c4cdc1188bae40e481d6b17c1 (patch)
treea09afc8e5401d3179e6513b62cab02bd93ab8737
parent0aeb7a0a38c26d2da09c364148b037de7deeb7e5 (diff)
Do not compile bcache-test by defaultv1.0.7
This way the Debian package can build without OpenSSL.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 50a4d2b..3f8d87b 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ DRACUTLIBDIR=/lib/dracut
INSTALL=install
CFLAGS+=-O2 -Wall -g
-all: make-bcache probe-bcache bcache-super-show bcache-test
+all: make-bcache probe-bcache bcache-super-show
install: make-bcache probe-bcache bcache-super-show
$(INSTALL) -m0755 make-bcache bcache-super-show $(DESTDIR)${PREFIX}/sbin/
@@ -18,7 +18,7 @@ install: make-bcache probe-bcache bcache-super-show
# $(INSTALL) -m0755 bcache-test $(DESTDIR)${PREFIX}/sbin/
clean:
- $(RM) -f make-bcache probe-bcache bcache-super-show bcache-test *.o
+ $(RM) -f make-bcache probe-bcache bcache-super-show bcache-test -- *.o
bcache-test: LDLIBS += `pkg-config --libs openssl` -lm
make-bcache: LDLIBS += `pkg-config --libs uuid blkid`