-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
42 lines (28 loc) · 844 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
FILE_SIZE_LIMIT_MB = 25
LARGE_FILES := $(shell find . -type f -size +$(FILE_SIZE_LIMIT_MB)M -not -path "./.git/*")
LARGE_FILES_GZ := $(addsuffix .gz, $(LARGE_FILES))
ARCHIVES := $(shell find . -type f -name "*.gz")
ARCHIVE_SOURCES := $(basename $(ARCHIVES))
.PHONY: clean
clean:
echo "clean"
.PHONY: verify
verify:
echo "verify"
$(LARGE_FILES_GZ): %.gz: %
@if [ $(suffix $<) == ".gz" ]; then\
echo "Warning: $< is already compressed. Skipping...";\
else\
gzip $< > /dev/null &&\
echo "$< -> $@";\
fi
# This target compresses all files larger than 25 MB
.PHONY: compress
compress: $(LARGE_FILES_GZ)
@echo "Files larger than $(FILE_SIZE_LIMIT_MB) MBytes are compressed!"
$(ARCHIVE_SOURCES): %: %.gz
@gzip -d $< &&\
echo "$< -> $@"
.PHONY: uncompress
uncompress: $(ARCHIVE_SOURCES)
@echo "All files are uncompressed!"