software: hide and delete .ts files

This commit is contained in:
Sebastien Bourdeauducq 2013-01-10 18:01:42 +01:00
parent 7adee988f2
commit 080dbaa206
4 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
__pycache__ __pycache__
build/* build/*
*.o *.o
*.ts
*.d *.d
*.a *.a
*.bin *.bin

View File

@ -38,6 +38,6 @@ flash: bios.bin
m1nor bios.bin m1nor bios.bin
clean: 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 .PHONY: clean libs flash

View File

@ -21,4 +21,4 @@ libbase.a: $(OBJECTS)
.PHONY: clean .PHONY: clean
clean: clean:
rm -f $(OBJECTS) $(OBJECTS:.o=.d) libbase.a .*~ *~ rm -f $(OBJECTS) $(OBJECTS:.o=.ts) $(OBJECTS:.o=.d) libbase.a .*~ *~

View File

@ -21,4 +21,4 @@ libcompiler-rt.a: $(OBJECTS)
.PHONY: clean .PHONY: clean
clean: clean:
rm -f $(OBJECTS) $(OBJECTS:.o=.d) libcompiler-rt.a .*~ *~ rm -f $(OBJECTS) $(OBJECTS:.o=.ts) $(OBJECTS:.o=.d) libcompiler-rt.a .*~ *~