Added tutorial

This commit is contained in:
Dmitry Boulytchev 2020-02-19 15:28:29 +03:00
parent b7271d167a
commit b0e5bc26e3
10 changed files with 153 additions and 6 deletions

13
tutorial/Makefile Normal file
View file

@ -0,0 +1,13 @@
SHELL := /bin/bash
FILES=$(wildcard *.lama)
ALL=$(sort $(FILES:.lama=))
LAMAC=../src/lamac
all: $(ALL)
%: %.lama
$(LAMAC) $<
clean:
rm -Rf *.s *.o *.i *~