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

36 lines
725 B
Makefile

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