11 lines
177 B
Makefile
11 lines
177 B
Makefile
all: lib_el.a lib_el.so
|
|
|
|
lib_el.a:_el.h _el.cpp
|
|
g++ -c -o lib_el.a _el.cpp
|
|
|
|
lib_el.so:_el.h _el.cpp
|
|
g++ -fPIC -shared -o lib_el.so _el.cpp
|
|
|
|
clean:
|
|
rm -f lib_el.a lib_el.so
|