mlibc/toplevel.makefile

22 lines
307 B
Plaintext
Raw Normal View History

2015-11-15 19:19:53 +01:00
.DEFAULT_GOAL = all
2016-07-28 19:23:34 +02:00
PROTOC ?= protoc
2015-11-15 19:19:53 +01:00
include $(TREE_PATH)/rules.makefile
$(call include_dir,libc)
2015-12-03 13:02:46 +01:00
$(call include_dir,libm)
2015-11-15 19:19:53 +01:00
2016-07-14 19:13:27 +02:00
.PHONY: all clean gen install install-headers
2015-11-15 19:19:53 +01:00
2015-12-03 13:02:46 +01:00
all: all-libc all-libm
2015-11-15 19:19:53 +01:00
clean: clean-libc
2016-07-28 19:23:34 +02:00
gen: gen-libc
2015-12-03 13:02:46 +01:00
install: install-libc install-libm
2016-07-14 19:13:27 +02:00
install-headers: install-headers-libc