github.com/notti/go-dynamic@v0.0.0-20190619201224-fc443047424c/example/testlib/Makefile (about)

     1  all: libcalltest32.so.1 libcalltest64.so.1
     2  
     3  libcalltest64.so.1: test.c
     4  	-$(CC) -g -shared -fPIC -Wl,-soname,libcalltest64.so.1 -o libcalltest64.so.1 test.c -lc
     5  
     6  libcalltest32.so.1: test.c
     7  	-$(CC) -g -shared -m32 -fPIC -Wl,-soname,libcalltest32.so.1 -o libcalltest32.so.1 test.c -lc
     8  
     9  clean:
    10  	rm -rf libcalltest32.so.1 libcalltest64.so.1
    11  
    12  .PHONY: clean