You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
316 B
15 lines
316 B
1 year ago
|
.DEFAULT_GOAL := help
|
||
|
|
||
|
help:
|
||
|
@echo "Usage: make [target]"
|
||
|
@echo ""
|
||
|
@echo "Targets:"
|
||
|
@echo " archive Create a tar archive of the current directory"
|
||
|
|
||
|
archive:
|
||
|
@echo "Removing old archive..."
|
||
|
@rm -fv custom.tar.gz
|
||
|
@echo
|
||
|
@echo "Creating archive..."
|
||
|
@tar -czvf custom.tar.gz --exclude=Makefile --dereference *
|