From db081d09fae12a6d0ff0e82190d669287733a313 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Tue, 25 Jul 2017 15:00:11 +0200 Subject: Add the .d files to gitignore/clean target. --- .gitignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9d22eb4..83891a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.o +*.d *.so diff --git a/Makefile b/Makefile index 15b21d8..a2eebed 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ $(TARGET): $(OBJS) yasm -f elf -m amd64 -o $@ $< clean: - -rm $(OBJECTS) $(TARGET) + -rm -f *.o *.d $(TARGET) test: $(TARGET) LD_LIBRARY_PATH=. ./test.py -- cgit v1.2.3