Files
iputils/Makefile
Fabian Bläse 0ab270b923 Makefile: Make all targets phony
None of the Makefile targets create a file called like the target.
Therefore all targets are declared to be phony.
2019-07-26 17:34:19 +02:00

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