You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
319 B
12 lines
319 B
.PHONY: all setup clean run |
|
|
|
BASETEST=../TEST-50-MULTINIC |
|
|
|
all: |
|
@$(MAKE) NM=1 -s --no-print-directory -C $(BASETEST) all |
|
setup: |
|
@$(MAKE) NM=1 -s --no-print-directory -C $(BASETEST) setup |
|
clean: |
|
@$(MAKE) NM=1 -s --no-print-directory -C $(BASETEST) clean |
|
run: |
|
@$(MAKE) NM=1 -s --no-print-directory -C $(BASETEST) run
|
|
|