diff options
author | Samuel Fadel <samuel@nihil.ws> | 2022-12-01 15:03:05 +0100 |
---|---|---|
committer | Samuel Fadel <samuel@nihil.ws> | 2022-12-01 15:03:05 +0100 |
commit | 7aa66702b2b9396add0cc20849ec89a48495c7ff (patch) | |
tree | 3d5bf019313264ff6527e5cfb464b060113b44aa /Makefile |
Initial commit.
Sketching Scheme/C interop.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3d127d2 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +all: libschewm.so + +libschewm.so: schewm.c + gcc -fPIC -Wall -shared -o libschewm.so schewm.c |