155b953028
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/make#c55f31d05dc5eaf4461e5c53d43872e706f20e0d
18 lines
188 B
Makefile
18 lines
188 B
Makefile
all: ./a/b/c a
|
|
|
|
clean:
|
|
rm -rf a dir
|
|
|
|
%/.:
|
|
mkdir -p $(@)
|
|
|
|
a/%/c: | ./dir/%/.
|
|
@echo "@ [$@]"
|
|
@echo "^ [$^]"
|
|
@echo "? [$?]"
|
|
|
|
a: | ./a/b/.
|
|
@echo "@ [$@]"
|
|
@echo "^ [$^]"
|
|
@echo "? [$?]"
|