File tree Expand file tree Collapse file tree 1 file changed +15
-13
lines changed Expand file tree Collapse file tree 1 file changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -12,23 +12,25 @@ endif
12
12
13
13
WORKDIR = ../testwrk/asm
14
14
15
- SUBDIRS = cpudetect opcodes listing val err misc
16
-
17
15
.PHONY : all continue mostlyclean clean
18
16
19
17
all : mostlyclean continue
20
18
21
- define CALL_template
22
-
23
- continue::
24
- @$(MAKE ) -C $1 all
25
-
26
- mostlyclean::
27
- @$(MAKE ) -C $1 clean
28
-
29
- endef
30
-
31
- $(foreach subdir,$(SUBDIRS),$(eval $(call CALL_template,$(subdir))))
19
+ continue : mostlyclean
20
+ @$(MAKE ) -C cpudetect all
21
+ @$(MAKE ) -C opcodes all
22
+ @$(MAKE ) -C listing all
23
+ @$(MAKE ) -C val all
24
+ @$(MAKE ) -C err all
25
+ @$(MAKE ) -C misc all
26
+
27
+ mostlyclean :
28
+ @$(MAKE ) -C cpudetect clean
29
+ @$(MAKE ) -C opcodes clean
30
+ @$(MAKE ) -C listing clean
31
+ @$(MAKE ) -C val clean
32
+ @$(MAKE ) -C err clean
33
+ @$(MAKE ) -C misc clean
32
34
33
35
clean : mostlyclean
34
36
@$(call RMDIR,$(WORKDIR ) )
You can’t perform that action at this time.
0 commit comments