Skip to content
Snippets Groups Projects
Makefile 113 B
Newer Older
.DEFAULT_GOAL:=all

all: build

.PHONY:=build
build:
	$(MAKE) -C src

.PHONY:=clean
clean:
	$(MAKE) -C src clean