diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-08-29 09:30:47 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-08-29 09:30:47 -0700 |
commit | dfc93f894087d99b6b0ff1976b450d3d3d41cd2b (patch) | |
tree | 211297016bc4441b7911e4f069dd40323bb62f4c /Makefile | |
parent | 2a1c55fc153bc793256cd3dbb97dd568c782a561 (diff) | |
download | txr-dfc93f894087d99b6b0ff1976b450d3d3d41cd2b.tar.gz txr-dfc93f894087d99b6b0ff1976b450d3d3d41cd2b.tar.bz2 txr-dfc93f894087d99b6b0ff1976b450d3d3d41cd2b.zip |
Makefile: whitespace fix.
* Makefile (SRCS): Fix mixture of tabs and spaces, and bad
alignment, reported by Paul A. Patience.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -76,10 +76,10 @@ STDLIB_LATE_TLOS := $(filter-out $(STDLIB_EARLY_TLOS),$(STDLIB_TLOS)) ifneq ($(have_git),) SRCS := $(addprefix $(top_srcdir),\ $(filter-out lex.yy.c y.tab.c y.tab.h,\ - $(shell git $(if $(top_srcdir), \ - --work-tree=$(top_srcdir)) \ + $(shell git $(if $(top_srcdir),\ + --work-tree=$(top_srcdir)) \ --git-dir=$(top_srcdir).git \ - ls-files "*.c" "*.h" "*.l" "*.y"))) + ls-files "*.c" "*.h" "*.l" "*.y"))) endif SHIPPED := lex.yy.c y.tab.c y.tab.h |