Update and extend the README
[apeos.git] / GNUmakefile
blob9913c92df42e56f39828c032964cf10397d22958
1 # Copyright 2018 apeos contributors
3 # apeos main makefile, GNU make
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 APEOS_VERSION := $(shell printf "%s" "$(shell git rev-parse HEAD)"; if test -n "$(shell git status -s)"; then printf "%s" -dirty; fi)
20 .PHONY: default
21 default: all_binaries
23 .PHONY: all_binaries
24 all_binaries: apeos_version
26 .PHONY: apeos_version
27 apeos_version:
28 @echo "apeos version $(APEOS_VERSION)"
30 # build posix static binary
31 all_binaries: posix
32 .PHONY: posix
33 posix:
34 $(MAKE) -f posix.mk GCC_PREFIX=arm-linux-musleabihf-
36 # build esp-32 flash binary, through esp-idf-v3
37 all_binaries: esp
38 .PHONY: esp
39 esp:
40 $(MAKE) -f esp-idf.mk