mirror of
https://github.com/vim/vim
synced 2025-05-02 14:27:44 +02:00
prevent indentation if the previous line starts with e.g. `.PHONY:` closes: #17183 Signed-off-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
20 lines
232 B
Makefile
20 lines
232 B
Makefile
# vim:ft=make
|
|
# START_INDENT
|
|
.POSIX :
|
|
MAKEFLAGS += -rR
|
|
|
|
.SUFFIXES: .F .f
|
|
FC = f95
|
|
FFLAGS =
|
|
CPPFLAGS =
|
|
|
|
.PHONY: help
|
|
help:
|
|
@echo indentation test
|
|
|
|
.F.f:
|
|
$(FC) $(CPPFLAGS) -E $< > $@
|
|
|
|
.f.o:
|
|
$(FC) $(FFLAGS) -c -o $@ $<
|
|
# END_INDENT
|