mirror of
https://github.com/iputils/iputils.git
synced 2026-02-07 22:50:40 +08:00
None of the Makefile targets create a file called like the target. Therefore all targets are declared to be phony.
17 lines
214 B
Makefile
17 lines
214 B
Makefile
.PHONY: all clean install dist check
|
|
|
|
all:
|
|
ninja -C builddir
|
|
|
|
clean:
|
|
ninja -C builddir clean
|
|
|
|
install:
|
|
DESTDIR=$(DESTDIR) ninja -C builddir install
|
|
|
|
dist:
|
|
ninja -C builddir dist
|
|
|
|
check:
|
|
ninja -C builddir test
|