17 lines
345 B
Makefile
17 lines
345 B
Makefile
all: lib_el.a lib_el.so libftp.a libftp.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
|
|
|
|
libftp.a:ftplib.h ftplib.c
|
|
gcc -c -o libftp.a ftplib.c
|
|
|
|
libftp.so:ftplib.h ftplib.c
|
|
gcc -fPIC -shared -o libftp.so ftplib.c
|
|
|
|
clean:
|
|
rm -f lib_el.a lib_el.so libftp.a libftp.so
|