1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +00:00
cc65/test/Makefile

20 lines
311 B
Makefile
Raw Normal View History

# toplevel makefile for the regression tests
MAKE := make --no-print-dir
.PHONY: all clean
all:
2014-11-23 11:18:19 +00:00
@$(MAKE) -C val clean all
@$(MAKE) -C ref clean all
@$(MAKE) -C err clean all
@$(MAKE) -C misc clean all
clean:
@$(MAKE) -C val clean
@$(MAKE) -C ref clean
@$(MAKE) -C err clean
2014-11-22 21:22:30 +00:00
@$(MAKE) -C misc clean