summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 67c41e2ae6d2a7639cf2ddbc569eaf5b22cdc6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

NAME=mod_intercept_form_submit

SOURCE0 := $(shell spectool $(NAME).spec)
SOURCE := $(shell echo $(SOURCE0) | sed 's%^.*/%%')
NAME_VER := $(shell echo $(SOURCE) | sed 's%\.tar\.gz$$%%')

all:
	@echo 'Usage: make dist             to build the .tar.gz'
	@echo '       make timestamps       set file timestamps to match commit times'

timestamps:
	git ls-files | while read -r f ; do touch -ch -d "$$(git log -1 --format=%ci "$$f")" "$$f" ; done

dist:
	@if test -f ../$(SOURCE) ; then ( echo "The source [../$(SOURCE)] already exists." >&2 ; exit 1 ) ; fi
	@mkdir .dist
	@mkdir .dist/$(NAME_VER) && cp -rp * .dist/$(NAME_VER)
	tar cvzf ../$(SOURCE) -C .dist $(NAME_VER)
	@rm -rf .dist