aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian/patches/fix-upstream-clean-target.patch
blob: db2aa40e271f69f9f44cce4065c3b8093906a0bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Sean Whitton <spwhitton@spwhitton.name>
Date: Sat, 24 Sep 2016 16:29:55 -0700
Subject: fix upstream clean target

Some build products are not cleaned.

Forwarded: https://github.com/tsyrogit/zxcvbn-c/pull/5
---
 makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/makefile b/makefile
index 2007411..fa234c1 100644
--- a/makefile
+++ b/makefile
@@ -56,5 +56,6 @@ test: test-file test-inline test-c++inline test-c++file testcases.txt
 clean:
 	rm -f test-file zxcvbn-file.o test-c++file zxcvbn-c++file.o 
 	rm -f test-inline zxcvbn-inline.o test-c++inline zxcvbn-c++inline.o
+	rm -f dict-*.h zxcvbn.dict zxcvbn.cpp test.cpp
 	rm -f dictgen
 	
\ No newline at end of file