You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
405 B
24 lines
405 B
TRANS:=src/sipc.c
|
|
INCLUDE:=include/
|
|
CFLAGS:= -c -Wall -pedantic -fPIC -I$(INCLUDE)
|
|
|
|
all: clean libsipc sipcli
|
|
|
|
clean:
|
|
rm -f *.o
|
|
rm -f *.so
|
|
rm -f sipcli
|
|
rm -f *.socket
|
|
|
|
libsipc:
|
|
gcc $(CFLAGS) $(TRANS)
|
|
gcc -shared -o $@.so *.o
|
|
|
|
libsipc-ffi:
|
|
gcc $(CFLAGS) $(TRANS) src/ffi.c
|
|
gcc -shared -o $@.so *.o
|
|
|
|
sipcli: libsipc
|
|
gcc -Wall -pedantic -I$(INCLUDE) -Wl,-rpath=./ src/test.c -o $@ -L./ -lsipc
|
|
./$@
|