]> git.lizzy.rs Git - uwu-std.git/blob - Makefile
Initial commit
[uwu-std.git] / Makefile
1 all: bool.so int.so str.so nil.so ref.so
2
3 uwu_include_path=..
4
5 %.so: %.c
6         gcc -g -I${uwu_include_path} -shared -fpic $< -o $@ -D_GNU_SOURCE -Wall -Wextra
7
8 clean:
9         rm -rf *.so