diff options
author | Mattias Andrée <maandree@kth.se> | 2022-07-21 14:53:18 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-07-21 14:53:18 +0200 |
commit | 3be28b4e8f75190d30e311f0e69da714cac62cc5 (patch) | |
tree | 95374a0ac30802f838e0fee1d7c686b66dd26b11 /mk | |
parent | Remove dist (diff) | |
download | pylibgamma-3be28b4e8f75190d30e311f0e69da714cac62cc5.tar.gz pylibgamma-3be28b4e8f75190d30e311f0e69da714cac62cc5.tar.bz2 pylibgamma-3be28b4e8f75190d30e311f0e69da714cac62cc5.tar.xz |
Change license to ISC, change style, improve makefile1.1.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'mk')
-rw-r--r-- | mk/linux.mk | 2 | ||||
-rw-r--r-- | mk/macos.mk | 2 | ||||
-rw-r--r-- | mk/windows.mk | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/mk/linux.mk b/mk/linux.mk new file mode 100644 index 0000000..818e2e1 --- /dev/null +++ b/mk/linux.mk @@ -0,0 +1,2 @@ +PLATFORM = posix +LIBEXT = so diff --git a/mk/macos.mk b/mk/macos.mk new file mode 100644 index 0000000..35caab1 --- /dev/null +++ b/mk/macos.mk @@ -0,0 +1,2 @@ +PLATFORM = posix +LIBEXT = dylib diff --git a/mk/windows.mk b/mk/windows.mk new file mode 100644 index 0000000..8489de6 --- /dev/null +++ b/mk/windows.mk @@ -0,0 +1,2 @@ +PLATFORM = w32 +LIBEXT = dll |