-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
23 lines (20 loc) · 885 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
all:
go build pkcs11.go
# Usage notes for cgo
#usage: cgo -- [compiler options] file.go ...
# -cdefs=false: for bootstrap: write C definitions for C file to standard output
# -debug-define=false: print relevant #defines
# -debug-gcc=false: print gcc invocations
# -dynimport="": if non-empty, print dynamic import data for that file
# -dynlinker=false: record dynamic linker information in dynimport mode
# -dynout="": write -dynobj output to this file
# -gccgo=false: generate files for use with gccgo
# -gccgopkgpath="": -fgo-pkgpath option used with gccgo
# -gccgoprefix="": -fgo-prefix option used with gccgo
# -godefs=false: for bootstrap: write Go definitions for C file to standard output
# -import_runtime_cgo=true: import runtime/cgo in generated code
# -import_syscall=true: import syscall in generated code
# -objdir="": object directory
#
clean:
go clean