0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00
Files
vim/runtime/indent/testdir/make.ok
Eisuke Kawashima 7bc988067e runtime(make): do not automatically indent after a special target
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>
2025-04-22 20:20:46 +02:00

21 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