mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-18 04:39:59 +01:00
10 lines
104 B
Makefile
Executable File
10 lines
104 B
Makefile
Executable File
|
|
all: basic.so
|
|
|
|
basic.so:
|
|
g++ -std=c++11 -shared -fPIC basic.cpp -o basic.so
|
|
|
|
clean:
|
|
rm -f basic.so
|
|
|