diff options
author | Camil Staps | 2016-10-18 23:23:36 +0200 |
---|---|---|
committer | Camil Staps | 2016-10-18 23:23:36 +0200 |
commit | fd046650c4605a75df56da78ac1b51b4f16c308f (patch) | |
tree | 2729e009f0e6ccc8329e9b9db54e6fe25ea782d2 | |
parent | Almost finished Kemmer (diff) |
Fix make clean
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -24,5 +24,7 @@ all: $(TARGET) $(TEX) $(TEXFLAGS) $< clean: - latexmk -C - $(RM) $(FULL) $(SHORT) $(TINY) + $(RM) $(FULL) $(SHORT) $(TINY) \ + $(subst .pdf,.aux,$(FULL) $(SHORT) $(TINY)) \ + $(subst .pdf,.log,$(FULL) $(SHORT) $(TINY)) \ + $(subst .pdf,.out,$(FULL) $(SHORT) $(TINY)) |