furs

stripped_source_out
Login

stripped_source_out

Removes all unnecessary characters from the final source before upload to the mcu, this saves time compiling.

$(INTERMEDIATE_OUT)  $(TEXT-PROC) $(STRIPPED_ SOURCE_OUT) $(STRIP_PAT)
C:circle rad 40px "$(INTERMEDIATE_OUT)" fit
arrow right 100% 
E:box rad 10px " $(TEXT-PROC)" fit
arrow right 100%
G: circle rad 40px "$(STRIPPED_" "SOURCE_OUT)" fit
F:circle rad 40px "$(STRIP_PAT)" fit at 1.5 s of C
arrow from F.e \
then right until even with E \
then to E.s

$(STRIPPED_SOURCE_OUT): $(STRIP_PAT) $(INTERMEDIATE_OUT)
	$(TEXT_PROC) -t -nobackup -line $(INTERMEDIATE_OUT) -f $(STRIP_PAT) -out $(STRIPPED_SOURCE_OUT)

Makefile