Loki/Makefile

17 lines
216 B
Makefile
Raw Normal View History

DESTDIR := $(CURDIR)/$(DESTDIR)
build:
$(MAKE) -C src
check: build
$(MAKE) -C test
install:
$(MAKE) -C src install
$(MAKE) -C include install
.PHONY: clean
clean:
$(MAKE) -C src clean
$(MAKE) -C test clean