From d9c9b315e632391b6cf04ec2e07b801350900e4f Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Mon, 20 Jan 2014 13:06:50 +0100 Subject: [PATCH] Remove Python byte-code in the clean rule. --- graphics/text/Makefile | 2 +- lumps/dmxgus/Makefile | 2 +- lumps/genmidi/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/text/Makefile b/graphics/text/Makefile index 6f340197..5c51eee6 100644 --- a/graphics/text/Makefile +++ b/graphics/text/Makefile @@ -43,5 +43,5 @@ $(GRAPHICS): config.py fontchars ../../lumps/fraggle/freedoom.bex ./textgen clean: - rm -f $(GRAPHICS) + rm -f $(GRAPHICS) *.pyc diff --git a/lumps/dmxgus/Makefile b/lumps/dmxgus/Makefile index 73c09a34..1a4fec67 100644 --- a/lumps/dmxgus/Makefile +++ b/lumps/dmxgus/Makefile @@ -2,5 +2,5 @@ ultramid.ini : gen-ultramid config.py stats.py ./gen-ultramid $@ clean: - rm -f ultramid.ini + rm -f ultramid.ini *.pyc diff --git a/lumps/genmidi/Makefile b/lumps/genmidi/Makefile index 33c0f750..d0682b39 100644 --- a/lumps/genmidi/Makefile +++ b/lumps/genmidi/Makefile @@ -3,5 +3,5 @@ genmidi.lmp: config.py instruments/* ./mkgenmidi $@ clean: - rm -f genmidi.lmp + rm -f genmidi.lmp *.pyc