Browse Source

Fix spaces/tab issue

Pierre Muller 2 years ago
parent
commit
645e296345
3 changed files with 6 additions and 2 deletions
  1. 1 1
      rtl/embedded/Makefile
  2. 1 1
      rtl/embedded/Makefile.fpc
  3. 4 0
      rtl/embedded/fpcmake.loc

+ 1 - 1
rtl/embedded/Makefile

@@ -3218,7 +3218,7 @@ endif
 endef
 endef
 $(foreach unit,$(CPU_UNITS),$(eval $(call CPU_UNITS_RULE,$(unit))))
 $(foreach unit,$(CPU_UNITS),$(eval $(call CPU_UNITS_RULE,$(unit))))
 $(addsuffix $(PPUEXT),$(CPU_UNITS)):
 $(addsuffix $(PPUEXT),$(CPU_UNITS)):
-       $(COMPILER) -g $<
+	$(COMPILER) -g $<
 intrinsics$(PPUEXT): $(PROCINC)/intrinsics.pp $(SYSTEMUNIT)$(PPUEXT)
 intrinsics$(PPUEXT): $(PROCINC)/intrinsics.pp $(SYSTEMUNIT)$(PPUEXT)
 	$(COMPILER) $<
 	$(COMPILER) $<
 avrsim$(PPUEXT): $(ARCH)/avrsim.pp $(HEAPMGRUNIT)$(PPUEXT) $(CONSOLEIOUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT)
 avrsim$(PPUEXT): $(ARCH)/avrsim.pp $(HEAPMGRUNIT)$(PPUEXT) $(CONSOLEIOUNIT)$(PPUEXT) $(SYSTEMUNIT)$(PPUEXT)

+ 1 - 1
rtl/embedded/Makefile.fpc

@@ -312,7 +312,7 @@ endef
 $(foreach unit,$(CPU_UNITS),$(eval $(call CPU_UNITS_RULE,$(unit))))
 $(foreach unit,$(CPU_UNITS),$(eval $(call CPU_UNITS_RULE,$(unit))))
 
 
 $(addsuffix $(PPUEXT),$(CPU_UNITS)):
 $(addsuffix $(PPUEXT),$(CPU_UNITS)):
-       $(COMPILER) -g $<
+	$(COMPILER) -g $<
 
 
 
 
 # AVR specific units
 # AVR specific units

+ 4 - 0
rtl/embedded/fpcmake.loc

@@ -0,0 +1,4 @@
+list_all:
+	$(foreach v,                                        \
+      $(.VARIABLES), \
+      $(info $(v) = $($(v))))