1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-29 10:29:30 +00:00
cc65/test/Makefile
2014-11-22 22:22:30 +01:00

20 lines
287 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
@$(MAKE) -C misc all
clean:
@$(MAKE) -C val clean
@$(MAKE) -C ref clean
@$(MAKE) -C err clean
@$(MAKE) -C misc clean