slightly simplified make

master
Avril 5 years ago
parent 6c00435fb9
commit 458bfba0fd
Signed by: flanchan
GPG Key ID: 284488987C31F630

@ -7,7 +7,7 @@ The symlinked libsipc.so will resolve after the ffi library is built and the pac
Additionally you can run `sudo make install' to make it work system-wide (installed to /usr/lib/libsipc.so) (`sudo make uninstall' to remove it)
Or you can copy/symlink libsipc/libsipc-ffi.so to wherever you need.
Additional tools can be built by running `make all libsipc-ffi' in the libsipc/ directory.
Additional tools can be built by running `make all-ffi' in the libsipc/ directory.
Functions:
sipc:bind(file) ;; Bind to socket `file'. Returns the socket descriptor on success and nil on fail (the socket must not already exist)

@ -4,6 +4,8 @@ CFLAGS:= -c -Wall -pedantic -fPIC -I$(INCLUDE)
all: clean libsipc sipcli
all-ffi: all libsipc-ffi
clean:
rm -f *.o
rm -f *.so

Loading…
Cancel
Save