From 6c0e040bfee70cace22bb0caa5a593ea50092bc8 Mon Sep 17 00:00:00 2001 From: Mark Olesen <Mark.Olesen@Germany> Date: Wed, 17 Nov 2010 11:44:46 +0100 Subject: [PATCH] STYLE: remove trailing space from remaining wmake rules --- wmake/MakefileApps | 2 +- wmake/MakefileFiles | 2 +- wmake/MakefileOptions | 2 +- wmake/rules/General/bison | 4 ++-- wmake/rules/General/btyacc | 2 +- wmake/rules/General/btyacc++ | 2 +- wmake/rules/General/byacc | 2 +- wmake/rules/General/moc | 2 +- wmake/rules/General/yacc | 4 ++-- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/wmake/MakefileApps b/wmake/MakefileApps index fcf4c9eb8cf..3d23644558f 100644 --- a/wmake/MakefileApps +++ b/wmake/MakefileApps @@ -1,4 +1,4 @@ -#------------------------------------------------------------------------------ +#-------------------------------*- makefile -*--------------------------------- # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | diff --git a/wmake/MakefileFiles b/wmake/MakefileFiles index 7303329f691..194df673f91 100644 --- a/wmake/MakefileFiles +++ b/wmake/MakefileFiles @@ -1,4 +1,4 @@ -#------------------------------------------------------------------------------ +#-------------------------------*- makefile -*--------------------------------- # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | diff --git a/wmake/MakefileOptions b/wmake/MakefileOptions index 45d33ffb719..d70737243b7 100644 --- a/wmake/MakefileOptions +++ b/wmake/MakefileOptions @@ -1,4 +1,4 @@ -#------------------------------------------------------------------------------ +#-------------------------------*- makefile -*--------------------------------- # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | diff --git a/wmake/rules/General/bison b/wmake/rules/General/bison index fe2e00a0977..dd02dbd7aa3 100644 --- a/wmake/rules/General/bison +++ b/wmake/rules/General/bison @@ -1,8 +1,8 @@ .SUFFIXES: .y .Y -ytoo = bison -v -d -y $$SOURCE ; mv y.tab.c $*.c ; mv y.tab.h $*.h ; $(cc) $(cFLAGS) -c $*.c -o $@ +ytoo = bison -v -d -y $$SOURCE ; mv y.tab.c $*.c ; mv y.tab.h $*.h ; $(cc) $(cFLAGS) -c $*.c -o $@ -Ytoo = bison -v -d -y $$SOURCE ; mv y.tab.c $*.C ; mv y.tab.h $*.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ +Ytoo = bison -v -d -y $$SOURCE ; mv y.tab.c $*.C ; mv y.tab.h $*.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ .y.dep: $(MAKE_DEP) diff --git a/wmake/rules/General/btyacc b/wmake/rules/General/btyacc index f868b05afde..aaec4406fd0 100644 --- a/wmake/rules/General/btyacc +++ b/wmake/rules/General/btyacc @@ -1,6 +1,6 @@ .SUFFIXES: .y -ytoo = btyacc -v -d $(SKELETON) $$SOURCE ; mv y_tab.c $*.C ; mv y_tab.h $*.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ +ytoo = btyacc -v -d $(SKELETON) $$SOURCE ; mv y_tab.c $*.C ; mv y_tab.h $*.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ .y.dep: $(MAKE_DEP) diff --git a/wmake/rules/General/btyacc++ b/wmake/rules/General/btyacc++ index c65365c0094..0d2bd33ea78 100644 --- a/wmake/rules/General/btyacc++ +++ b/wmake/rules/General/btyacc++ @@ -1,6 +1,6 @@ .SUFFIXES: .Y -Ytoo = btyacc++ -v -d $(SKELETON) $$SOURCE ; mv y_tab.c $*.C ; mv y_tab.h $*.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ +Ytoo = btyacc++ -v -d $(SKELETON) $$SOURCE ; mv y_tab.c $*.C ; mv y_tab.h $*.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ .Y.dep: $(MAKE_DEP) diff --git a/wmake/rules/General/byacc b/wmake/rules/General/byacc index 919da82e616..e3393ee7ff1 100644 --- a/wmake/rules/General/byacc +++ b/wmake/rules/General/byacc @@ -1,6 +1,6 @@ .SUFFIXES: .y -ytoo = byacc -v $(YYPREFIX) -d $$SOURCE ; mv y.tab.c $*.C ; mv y.tab.h $*.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ +ytoo = byacc -v $(YYPREFIX) -d $$SOURCE ; mv y.tab.c $*.C ; mv y.tab.h $*.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ .y.dep: $(MAKE_DEP) diff --git a/wmake/rules/General/moc b/wmake/rules/General/moc index e85cb479f58..f47f586a3a3 100644 --- a/wmake/rules/General/moc +++ b/wmake/rules/General/moc @@ -1,6 +1,6 @@ .SUFFIXES: .qt -qttoo = $(QTDIR)/bin/moc -f $$SOURCE -o $*.C ; $(CC) $(c++FLAGS) -c $*.C -o $@ +qttoo = $(QTDIR)/bin/moc -f $$SOURCE -o $*.C ; $(CC) $(c++FLAGS) -c $*.C -o $@ .qt.dep: $(MAKE_DEP) diff --git a/wmake/rules/General/yacc b/wmake/rules/General/yacc index f9d393e2838..959d4297374 100644 --- a/wmake/rules/General/yacc +++ b/wmake/rules/General/yacc @@ -1,8 +1,8 @@ .SUFFIXES: .y .Y -ytoo = yacc -v -d $$SOURCE ; mv y.tab.c $*.c ; mv y.tab.h $(@D)/parser.h ; $(CC) $(c++FLAGS) -c $*.c -o $@ +ytoo = yacc -v -d $$SOURCE ; mv y.tab.c $*.c ; mv y.tab.h $(@D)/parser.h ; $(CC) $(c++FLAGS) -c $*.c -o $@ -Ytoo = yacc -v -d $$SOURCE ; mv y.tab.c $*.C ; mv y.tab.h $(@D)/parser.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ +Ytoo = yacc -v -d $$SOURCE ; mv y.tab.c $*.C ; mv y.tab.h $(@D)/parser.H ; $(CC) $(c++FLAGS) -c $*.C -o $@ .y.dep: $(MAKE_DEP) -- GitLab