From 323dc793daaad31f6b13c48021e6297f3194e999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 2 Jul 2014 16:56:18 +0300 Subject: [PATCH] Remove an unused function in mktargets.py --- build/mktargets.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/build/mktargets.py b/build/mktargets.py index cf17770a..e019efdf 100755 --- a/build/mktargets.py +++ b/build/mktargets.py @@ -20,9 +20,6 @@ INCLUDE=[] OUTFILE="targets.mk" CPP_SUFFIX=".cpp" -def make_o(x): - return os.path.splitext(x)[0] + ".$(OBJ)" - def write_cpp_rule_pattern(f): src = "$(%s_SRCDIR)/%%%s"%(PREFIX, CPP_SUFFIX) dst = "$(%s_SRCDIR)/%%.$(OBJ)"%(PREFIX)