You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phetch/Makefile

28 lines
559 B
Makefile

# Simple, stupid makefile to make phetch
PHETCH_RELEASE = target/release/phetch
PHETCH_DEBUG = target/debug/phetch
4 years ago
RSFILES = $(wildcard src/*.rs src/**/*.rs)
4 years ago
.PHONY: release debug clean
# Default target
release: $(PHETCH_RELEASE)
# Binary with debugging info
debug: $(PHETCH_DEBUG)
4 years ago
# Remove the release directory and its contents
clean:
4 years ago
@rm -rf target
# Build and strip the release version
$(PHETCH_RELEASE): $(RSFILES)
4 years ago
cargo build --release --features tls
strip $@
# Build the debug version
$(PHETCH_DEBUG): $(RSFILES)
4 years ago
cargo build --features tls