mirror of
https://github.com/dimitri/pgloader.git
synced 2026-01-24 16:41:03 +01:00
Including some Makefile hacks where test doesn't depend on the main pgloader binary anymore because I coulnd't stop the binary to get being built again even if it's been done already...
9 lines
116 B
Makefile
9 lines
116 B
Makefile
TESTS = $(wildcard *.load)
|
|
OUT = $(TESTS:.load=.out)
|
|
|
|
all: $(OUT)
|
|
|
|
%.out: %.load
|
|
$(PGLOADER) --verbose $<
|
|
@echo
|