]> rtime.felk.cvut.cz Git - linux-conf-perf.git/blob - Makefile
Change password authentication method to database
[linux-conf-perf.git] / Makefile
1 .PHONY: all help parse_kconfig write_config build run test clean clean_db clean_database clean_measure clean_linux clean_buildroot mlinux mbuildroot deflinux distclean_linux distclean_buildroot distclean picosat init initialize initialize_database initdb
2
3 -include .conf.mk
4
5 all: parse_kconfig write_config allconfig picosat
6
7 help:
8         @echo "all         - Builds basic programs and prints message about next steps."
9         @echo "help        - Prints this text"
10         @echo "mbuildroot  - Calls 'make menuconfig' in buildroot folder. Use this for"
11         @echo "              buildroot configuration."
12         @echo "mlinux      - Calls 'make menuconfig' in linux folder. Use this for linux"
13         @echo "              configuration."
14         @echo "deflinux    - Executes 'make defconfig' in linux folder. This generates default"
15         @echo "              linux configuration for architecture specified in conf.py"
16         @echo "initialize  - Executes only initialization. Depending on configuration this"
17         @echo "              can take various amount of time."
18         @echo "test        - Executes boot and benchmark test. You should use this before"
19         @echo "              target run. This target is for testing if initial kernel"
20         @echo "              configuration, buildroot configuration and benchmark are"
21         @echo "              configured right."
22         @echo "run         - Executes loop of kernel building, booting and benchmark execution."
23         @echo "evaluate    - Creating result statistics from generated data."
24         @echo
25         @echo "clean               - Cleans all generated files. Except those in"
26         @echo "                      linux and buildroot."
27         @echo "distclean           - Cleans all configurations and generated files."
28         @echo "                      Including linux and buildroot."
29         @echo "clean_linux         - Executes 'make clean' in linux folder."
30         @echo "distclean_linux     - Executes 'make distclean' in linux folder."
31         @echo "clean_buildroot     - Executes 'make clean' in buildroot folder."
32         @echo "distclean_buildroot - Executes 'make distclean' in buildroot folder."
33
34 mbuildroot: buildroot/.config buildroot/system/skeleton/usr/bin/linux-conf-perf
35         $(MAKE) -C buildroot menuconfig
36
37 mlinux:
38         ARCH=$(CONF_KERNEL_ARCH) $(MAKE) -C linux menuconfig
39
40 deflinux:
41         ARCH=$(CONF_KERNEL_ARCH) $(MAKE) -C linux defconfig
42
43 dot_config: allconfig
44         cd linux && SRCARCH=$(CONF_KERNEL_ARCH) ARCH=$(CONF_KERNEL_ARCH) KERNELVERSION=$(CONF_KERNEL_ARCH) \
45                 ../scripts/allconfig/allconfig Kconfig .config ../$(CONF_DOT_CONFIG)
46
47 init: initialize
48 initialize: all
49         scripts/initialize.py
50
51 initdb: initialize_database
52 initialize_database:
53         PGPASSWORD="$(CONF_DB_PASSWORD)" psql -d "$(CONF_DB_DATABASE)" -h "$(CONF_DB_HOST)" -p "$(CONF_DB_PORT)" -f scripts/databaseinit.sql
54
55 test: parse_kconfig
56         scripts/test.py
57
58 run: all
59         scripts/loop.py
60
61 evaluate:
62         scripts/evaluate.py
63
64 clean:
65         @$(MAKE) -C scripts/parse_kconfig clean
66         @$(MAKE) -C scripts/write_config clean
67         @$(MAKE) -C scripts/allconfig clean
68         @if [ -e scripts/picosat-959/makefile ]; then $(MAKE) -C scripts/picosat-959 clean; fi
69         $(RM) .conf.mk
70         $(RM) -r jobfiles
71
72 clean_measure: cleandb
73         $(RM) -r configurations
74         $(RM) -r output
75         $(RM) -r result
76         $(RM) $(CONF_DOT_CONFIG)
77
78 cleandb: clean_database
79 clean_database:
80         PGPASSWORD="$(CONF_DB_PASSWORD)" psql -d "$(CONF_DB_DATABASE)" -h "$(CONF_DB_HOST)" -p "$(CONF_DB_PORT)" -f scripts/databaseclean.sql
81
82 distclean: clean distclean_linux distclean_buildroot clean_measure
83
84 clean_linux:
85         @$(MAKE) -C linux clean
86
87 distclean_linux:
88         @$(MAKE) -C linux distclean
89
90 clean_buildroot:
91         @$(MAKE) -C buildroot clean
92
93 distclean_buildroot:
94         @$(MAKE) -C buildroot distclean
95
96 #######################################
97
98 .conf.mk: conf.py
99         scripts/confmk.py
100
101 parse_kconfig:
102         @if [[ `$(MAKE) -C scripts/parse_kconfig/ -q; echo $$?` != "0" ]]; then \
103         $(MAKE) -C scripts/parse_kconfig/; fi
104
105 write_config:
106         @if [[ `$(MAKE) -C scripts/write_config/ -q; echo $$?` != "0" ]]; then \
107         $(MAKE) -C scripts/write_config/; fi
108
109 allconfig:
110         @if [[ `$(MAKE) -C scripts/allconfig/ -q; echo $$?` != "0" ]]; then \
111         $(MAKE) -C scripts/allconfig/; fi
112
113 picosat:
114         @if [ ! -e scripts/picosat-959/makefile ]; then \
115         cd scripts/picosat-959 && ./configure; fi
116         @if [[ `$(MAKE) -C scripts/picosat-959 -q; echo $$?` != "0" ]]; then \
117         $(MAKE) -C scripts/picosat-959; fi
118
119 buildroot/.config:
120         cp $(CONF_BUILDROOT_DEF_CONFIG) $@
121
122 buildroot/system/skeleton/usr/bin/linux-conf-perf:
123         cp $(CONF_BUILDROOT_INITSCRIPT) $@
124         cat $(CONF_BUILDROOT_INITTAB_DIRECTIVE) >> buildroot/system/skeleton/etc/inittab