mirror of
https://github.com/mnauw/git-remote-hg.git
synced 2026-01-12 09:22:05 +01:00
They work, but they need too many changes in different packages. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
20 lines
233 B
Makefile
20 lines
233 B
Makefile
RM ?= rm -f
|
|
|
|
T = main.t bidi.t
|
|
TEST_DIRECTORY := $(CURDIR)
|
|
|
|
export TEST_DIRECTORY
|
|
|
|
all: test
|
|
|
|
test: $(T)
|
|
$(MAKE) clean
|
|
|
|
$(T):
|
|
$(SHELL) $@ $(TEST_OPTS)
|
|
|
|
clean:
|
|
$(RM) -r 'trash directory'.* test-results
|
|
|
|
.PHONY: all test $(T) clean
|