1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +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 12:18:19 +01: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 22:22:30 +01:00
@$(MAKE) -C misc clean