Files
dolthub--doltgresql/testing/postgres-client-tests/odbc/Makefile
T
2026-07-13 12:32:25 +08:00

11 lines
140 B
Makefile

LDFLAGS := -lodbc
all: psqlodbc-test
psqlodbc-test: psqlodbc-test.c
$(CC) -o $@ $^ $(LDFLAGS)
.PHONY: clean
clean:
rm -f psqlodbc-test