mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
15 lines
325 B
Makefile
15 lines
325 B
Makefile
.PHONY: all
|
|
all: hellodlopen function1.so
|
|
|
|
function1.so: function1.cpp function1.o
|
|
g++ -c -g -fpic -o function1.o function1.cpp
|
|
g++ -shared -o function1.so function1.o
|
|
|
|
hellodlopen: hellodlopen.cpp
|
|
g++ -g -o hellodlopen hellodlopen.cpp -ldl
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellodlopen hellodlopen.o function1.o function1.so
|
|
|