Initial commit

This commit is contained in:
Dmitry Boulytchev 2018-02-13 02:03:27 +03:00
parent 6f44f0f27e
commit 2cb4d44e60
5 changed files with 188 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
SHELL := /bin/bash
.PHONY: all
all:
pushd src && make && popd
clean:
pushd src && make clean && popd