Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « debian - github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09539a534bd3579d5b0ef5f3cee0cf0d149ae8df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# Makefile for preparations of Debian builds
#

all: copyright

copyright: copyright.header copyright.footer
	@cat copyright.header > copyright
	@sed -r -e 's/^$$/./' -e 's/^[ ]*(.*)$$/    \1/' ../core/LICENSE >> copyright
	@cat copyright.footer >> copyright

clean:
	@rm -f *~ *.log
	@rm -f -r tmp/*

distclean: clean
	@find . -type f -a -name "*.in" -a ! -name "control.in" | sed -e 's/.in$$//' | xargs rm -f

devclean: clean