24 lines
256 B
Makefile
24 lines
256 B
Makefile
TARGETS = target
|
|
RM = rm -f
|
|
LN = ln -f
|
|
MKDIR = mkdir -m 0755 -p
|
|
INSTALL = install
|
|
|
|
|
|
all: $(TARGETS)
|
|
|
|
target:
|
|
$(MAKE) command
|
|
|
|
clean:
|
|
$(RM) --
|
|
|
|
distclean: clean
|
|
$(RM) -- $(TARGETS)
|
|
|
|
install: all
|
|
|
|
uninstall:
|
|
|
|
.PHONY: all clean distclean install uninstall
|