From db1816319375fcf716aeb2ab63e07767b3649878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Tue, 14 Mar 2023 11:55:02 +0100 Subject: [PATCH] Start work on build infrastructure. --- .gitignore | 2 ++ Makefile | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index d6ff91a..4e54a11 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ *~ *.o +*.so +*.import.scm diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8f679cd --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ + + +.PHONY: all +all: testing.so testing.import.scm + +%.so: %.scm + csc -s $< + +%.import.scm: %.scm + csc -J $< + +testing.o: testing.scm +testing.import.scm: testing.scm