diff options
| author | Blista Kanjo | 2024-06-18 19:21:40 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2024-06-18 19:21:40 -0400 |
| commit | fde88c774dbcaccf3a565614ca204f02c0d96923 (patch) | |
| tree | 786328d5789005b85b4261190fee8c9282c58356 /.local/share | |
| parent | 6d04dacd608185551728c289d880095a744dea85 (diff) | |
feat: add `Makefile` to compile `dateTimeSetter` with `cython3`
Diffstat (limited to '.local/share')
| -rw-r--r-- | .local/share/python-dateTimeSetter/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.local/share/python-dateTimeSetter/Makefile b/.local/share/python-dateTimeSetter/Makefile new file mode 100644 index 0000000..7f19214 --- /dev/null +++ b/.local/share/python-dateTimeSetter/Makefile @@ -0,0 +1,3 @@ +compile: + cython3 --embed -o dateTime.c -X language_level=3 dateTime.py + gcc -march=native -O2 -pipe -fno-plt -I /usr/include/python3.12 -o dateTime dateTime.c -lpython3.12 -lpthread -lm -lutil -ldl |
