From: Mart Lubbers Date: Thu, 11 Feb 2016 14:26:20 +0000 (+0100) Subject: initial commit X-Git-Url: https://git.martlubbers.net/?a=commitdiff_plain;h=19c5f39c61f1692641570dc3cf13360e7dff5cdf;hp=356120519f1690474d975dba49549bc36a48886b;p=cc1516.git initial commit --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e45a789 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +Clean System Files +lex diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3f8aeff --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CLM:=clm +CLMFLAGS:=-b -nt + +BINARIES:=lex + +.PHONY: all clean + +all: $(BINARIES) + +%: %.icl + $(CLM) $(CLMFLAGS) $(basename $<) -o $@ + +clean: + $(RM) -rv $(BINARIES) Clean\ System\ Files diff --git a/README.md b/README.md index 35c4616..167a116 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# cc1516 \ No newline at end of file +# cc1516 diff --git a/lex.icl b/lex.icl new file mode 100644 index 0000000..f050062 --- /dev/null +++ b/lex.icl @@ -0,0 +1,3 @@ +module lex + +Start = "Hello World!\n"