Browse code

Initial commit

Dario Rodriguez authored on 01/11/2025 11:49:23
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+all: libyesterday.so
3
+
4
+libyesterday.so: libyesterday.c
5
+	gcc -Wall -fPIC -shared -Wl,-soname,libyesterday.so libyesterday.c -o libyesterday.so
6
+
7
+clean:
8
+	rm -f libyesterday.so