mirror of
https://github.com/mattn/go-sqlite3.git
synced 2024-12-03 06:46:20 +00:00
13 lines
222 B
Makefile
13 lines
222 B
Makefile
TARGET = custom_driver_name
|
|
ifeq ($(OS),Windows_NT)
|
|
TARGET := $(TARGET).exe
|
|
endif
|
|
|
|
all : $(TARGET)
|
|
|
|
$(TARGET) : main.go
|
|
go build -ldflags="-X 'github.com/mattn/go-sqlite3.driverName=my-sqlite3'"
|
|
|
|
clean :
|
|
rm -f $(TARGET)
|