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

     1  all: libcalltest32.so.1 libcalltest64.so.1 test
     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  test:
    10  	-go test $(TEST)
    11  	-CGO_ENABLED=1 GOARCH=386 go test $(TEST)
    12  
    13  .PHONY: test