aboutsummaryrefslogtreecommitdiff
path: root/aux-gnurl/makefile
blob: 0e165b44b8c5b6324ef3157fba8f780539dd56db (plain)
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
.PHONY: all
all: makefiles allfiles

.PHONY: makefiles
makefiles:
	./gnurl0.awk ../docs/libcurl/opts/Makefile.inc > ../docs/libcurl/opts/Makefile.inc.tmp; mv ../docs/libcurl/opts/Makefile.inc.tmp ../docs/libcurl/opts/Makefile.inc

# manfiles:

.PHONY: allfiles
allfiles:
	sh ./gnurl1.sh

.PHONY: lint
lint:
	sh ./man_lint.sh

# TODO: finally drop the gmake dependency.
.PHONY: release
release:
	(cd .. ; sh ./buildconf)
	(cd .. ; sh ./configure-gnurl)
	(cd .. ; make)
	(cd .. ; make -C tests test)
#	(cd .. ; gmake distcheck)
	(cd .. ; make clean ; cd aux-gnurl ; git restore makefile)
	(cd .. ; MAKE="make" ./maketgz 7.67.0)

.PHONY: clean
clean:
	git restore ..