mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-16 23:19:00 +08:00
ab6c194d71
now you could add your own modules into nasal without changing the source code!
6 lines
145 B
Makefile
6 lines
145 B
Makefile
.PHONY=clean
|
|
libfib.so: fib.cpp
|
|
clang++ -c -O3 fib.cpp -fPIC -o fib.o
|
|
clang++ -shared -o libfib.so fib.o
|
|
clean:
|
|
rm *.o *.so *.dll *.dylib
|