You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lua-zmq/Makefile

7 lines
170 B
Makefile

zmq.so: zmq.c
gcc -O2 -fpic -c -I /usr/include/lua5.1/ -o zmq.o zmq.c
gcc -O `pkg-config --libs --cflags libzmq` -shared -fpic -o zmq.so zmq.o
clean:
rm zmq.so zmq.o