mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-05-22 04:25:44 +08:00
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
|