vim/runtime/indent/testdir/make.in
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

20 lines
229 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