mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-26 11:39:05 -05:00
12 lines
269 B
Makefile
12 lines
269 B
Makefile
CFLAGS := $(shell pkg-config --cflags mysqlclient)
|
|
LDFLAGS := $(shell pkg-config --libs mysqlclient)
|
|
|
|
all: mysql-connector-c-test
|
|
|
|
mysql-connector-c-test: mysql-connector-c-test.c
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f mysql-connector-c-test
|