software: hide and delete .ts files
This commit is contained in:
parent
7adee988f2
commit
080dbaa206
|
@ -1,6 +1,7 @@
|
|||
__pycache__
|
||||
build/*
|
||||
*.o
|
||||
*.ts
|
||||
*.d
|
||||
*.a
|
||||
*.bin
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 .*~ *~
|
||||
|
|
|
@ -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 .*~ *~
|
||||
|
|
Loading…
Reference in New Issue