Premier commit - Structure des fichiers

This commit is contained in:
Mysaa 2022-05-03 10:34:31 +02:00
commit 107cef8edd
Signed by: Mysaa
GPG Key ID: 7054D5D6A90F084F
7 changed files with 20 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
_build
pieuvre
main.native

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
all: pieuvre
pieuvre: *.ml *.mll *.mly
ocamlbuild -yaccflag -v -lib unix main.native
ln -f -s main.native pieuvre
chmod +x pieuvre
main.byte:
ocamlbuild -yaccflag -v main.byte
byte: main.byte
.PHONY: clean test
clean:
ocamlbuild -clean
rm -f pieuvre

0
lexer.mll Normal file
View File

0
main.ml Normal file
View File

0
parser.mly Normal file
View File

0
pieuvre.ml Normal file
View File

0
struct.ml Normal file
View File