Add .gitignore.

This commit is contained in:
Alexander Myltsev 2023-01-16 09:48:27 +04:00
parent 160525abde
commit 199f3a56bb
2 changed files with 8 additions and 1 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
*.o
*.bin
*.img
*.elf
*.dSYM
tools/mkfs
ejudge.sh

View File

@ -82,7 +82,7 @@ mbr.elf: mbr.o
$(LD) -m elf_i386 -Ttext=0x7c00 $^ -o $@ $(LD) -m elf_i386 -Ttext=0x7c00 $^ -o $@
clean: clean:
rm -f *.elf *.img *.bin *.o */*.o tools/mkfs rm -f *.elf *.img *.bin *.o */*.o tools/mkfs ejudge.sh
tools/%: tools/%.c tools/%: tools/%.c
gcc -Wall -Werror -g $^ -o $@ gcc -Wall -Werror -g $^ -o $@