From 62e639cfa6eb6a05bd8c77317171ae1f92fd4ec6 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Fri, 20 Jun 2014 14:48:01 +0200 Subject: [PATCH] md5sum: remove Makefile --- md5sum/Makefile | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 md5sum/Makefile diff --git a/md5sum/Makefile b/md5sum/Makefile deleted file mode 100644 index 66f847998..000000000 --- a/md5sum/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -include ../common.mk - -all: ../build/md5sum - -CRYPTO_DIR := rust-crypto -CRYPTO_LIB := $(CRYPTO_DIR)/$(shell $(RUSTC) --crate-file-name --crate-type rlib $(CRYPTO_DIR)/src/rust-crypto/lib.rs) - -../build/md5sum: md5sum.rs $(CRYPTO_LIB) - $(RUSTC) $(RUSTFLAGS) -L $(CRYPTO_DIR) -o $@ $< - -$(CRYPTO_LIB): $(CRYPTO_DIR)/src/rust-crypto/*.rs - cd $(CRYPTO_DIR) && make - -clean: - cd $(CRYPTO_DIR) && make clean