From: Sebastien Bourdeauducq Date: Thu, 10 Jan 2013 17:01:42 +0000 (+0100) Subject: software: hide and delete .ts files X-Git-Tag: 24jan2021_ls180~3055 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=080dbaa206ef70a9b65a53a8963328e3e7340d0f;p=litex.git software: hide and delete .ts files --- diff --git a/.gitignore b/.gitignore index 378e5117..a5ab809a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ __pycache__ build/* *.o +*.ts *.d *.a *.bin diff --git a/software/bios/Makefile b/software/bios/Makefile index 02fe4af1..10cae963 100644 --- a/software/bios/Makefile +++ b/software/bios/Makefile @@ -38,6 +38,6 @@ flash: bios.bin m1nor bios.bin clean: - rm -f $(OBJECTS) $(OBJECTS:.o=.d) bios.elf bios.bin bios-rescue.elf bios-rescue.bin .*~ *~ + rm -f $(OBJECTS) $(OBJECTS:.o=.ts) $(OBJECTS:.o=.d) bios.elf bios.bin bios-rescue.elf bios-rescue.bin .*~ *~ .PHONY: clean libs flash diff --git a/software/libbase/Makefile b/software/libbase/Makefile index 1d6436c3..2c070472 100644 --- a/software/libbase/Makefile +++ b/software/libbase/Makefile @@ -21,4 +21,4 @@ libbase.a: $(OBJECTS) .PHONY: clean clean: - rm -f $(OBJECTS) $(OBJECTS:.o=.d) libbase.a .*~ *~ + rm -f $(OBJECTS) $(OBJECTS:.o=.ts) $(OBJECTS:.o=.d) libbase.a .*~ *~ diff --git a/software/libcompiler-rt/Makefile b/software/libcompiler-rt/Makefile index d1f83ad8..15274808 100644 --- a/software/libcompiler-rt/Makefile +++ b/software/libcompiler-rt/Makefile @@ -21,4 +21,4 @@ libcompiler-rt.a: $(OBJECTS) .PHONY: clean clean: - rm -f $(OBJECTS) $(OBJECTS:.o=.d) libcompiler-rt.a .*~ *~ + rm -f $(OBJECTS) $(OBJECTS:.o=.ts) $(OBJECTS:.o=.d) libcompiler-rt.a .*~ *~