aboutsummaryrefslogtreecommitdiff
blob: f681077c11eafb823f4417b25ca9fd0957ac48af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

include settings.mk

all:

install:
	$(INSTALL_DIR) $(DESTDIR)/$(PREFIX)/bin/
	$(INSTALL_EXEC) crossdev $(DESTDIR)/$(PREFIX)/bin/
	$(MAKE) -C wrappers install

P = crossdev-`date +%Y%m%d`
dist:
	git archive --prefix=$(P)/ HEAD > $(P).tar
	-lzma -f $(P).tar

.PHONY: all dist install