aboutsummaryrefslogtreecommitdiffstats
path: root/tools/vnet/Makefile
blob: af69d39bf0b7c7e64edee2b64241064d0f83a7cd (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# -*- mode: Makefile; -*-

ifndef VNET_ROOT
export VNET_ROOT = $(shell pwd)
include $(VNET_ROOT)/Make.env
endif

SUBDIRS:=
SUBDIRS+= examples
SUBDIRS+= scripts
SUBDIRS+= gc
SUBDIRS+= libxutil
SUBDIRS+= vnetd
SUBDIRS+= vnet-module

.PHONY: all
all: compile

gc.tar.gz:
	#wget http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/$@
	wget $(XEN_EXTFILES_URL)/$@

.PHONY: gc
gc: gc.tar.gz
	tar xfz gc.tar.gz
	ln -sf gc?.? gc

$(GC_LIB_A): gc
	(cd gc && ./configure --prefix=$(GC_DIR) )
	make -C gc
	DESTDIR="" make -C gc install

.PHONY: gc-all
gc-all: $(GC_LIB_A)

.PHONY: gc-install
gc-install:

.PHONY: gc-clean
gc-clean:
	-@$(RM) -r gc?.? gc

submak = $(MAKE) -C $(patsubst %-$(1),%,$(@)) $(1)
subtgt = $(patsubst %,%-$(1),$(SUBDIRS))

%-all:
	$(call submak,all)

%-clean:
	-$(call submak,clean)

%-install:
	$(call submak,install)

.PHONY: compile
compile: $(call subtgt,all)

.PHONY: install
install: DESTDIR=
install: dist

.PHONY: dist
dist: compile $(call subtgt,install)

.PHONY: clean
clean: $(call subtgt,clean)
	-@$(RM) -r build

.PHONY: pristine
pristine: clean
	-@$(RM) gc.tar.gz

.PHONY: help
help:
	@echo 'Cleaning targets:'
	@echo '  clean     - clean subdirs and remove the build dir'
	@echo '  pristine  - clean, then remove the gc tarball'
	@echo ''
	@echo 'Installation targets:'
	@echo '  install   - build and install relative to /'
	@echo '  dist      - build and install relative to DESTDIR (default XEN_ROOT/dist/install)'
	@echo ''
	@echo 'Compilation targets:'
	@echo '  all       - same as compile'
	@echo '  compile   - build everything'
	@echo ''
	@echo 'To build everything locally use "make" or "make all"'.
	@echo 'To build and install into XEN_ROOT/dist/install use "make dist".'
	@echo 'To build and install into the system use "make dist".'
	@echo 'See ./00README and ./00INSTALL for more information.'