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

20 lines
287 B
Makefile
Raw Normal View History

# 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
2014-11-22 21:22:30 +00:00
@$(MAKE) -C misc 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