1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00
cc65/test/Makefile

17 lines
240 B
Makefile

# toplevel makefile for the regression tests
MAKE := make --no-print-dir
.PHONY: all clean
all:
@$(MAKE) -C val all
@$(MAKE) -C ref all
@$(MAKE) -C err all
clean:
@$(MAKE) -C val clean
@$(MAKE) -C ref clean
@$(MAKE) -C err clean