aboutsummaryrefslogtreecommitdiff
path: root/_example/custom_driver_name/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '_example/custom_driver_name/Makefile')
-rw-r--r--_example/custom_driver_name/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/_example/custom_driver_name/Makefile b/_example/custom_driver_name/Makefile
deleted file mode 100644
index 91fcde6..0000000
--- a/_example/custom_driver_name/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-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)