diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-01-30 06:11:09 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-01-30 06:11:09 -0800 |
commit | 06ff31602ced595e7e738eb255a194e4e658e310 (patch) | |
tree | 98965c4afa73469fafaded72107b4149012871dc /cpp/config/makedepend.py | |
parent | merge from master (diff) | |
parent | changing UNSAFE make macro to MANAGED in C# (diff) | |
download | ice-06ff31602ced595e7e738eb255a194e4e658e310.tar.bz2 ice-06ff31602ced595e7e738eb255a194e4e658e310.tar.xz ice-06ff31602ced595e7e738eb255a194e4e658e310.zip |
using Java5 types in Ice core; general cleanup
Diffstat (limited to 'cpp/config/makedepend.py')
-rwxr-xr-x | cpp/config/makedepend.py | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/cpp/config/makedepend.py b/cpp/config/makedepend.py deleted file mode 100755 index 5572347c6d0..00000000000 --- a/cpp/config/makedepend.py +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env python -# ********************************************************************** -# -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. -# -# This copy of Ice is licensed to you under the terms described in the -# ICE_LICENSE file included in this distribution. -# -# ********************************************************************** - -import fileinput, re, string - -previous = "" - -commentre = re.compile("^#") - -for line in fileinput.input(): - line = line.strip() - - if commentre.search(line, 0): - continue; - - if len(line) == 0: - continue - - line = string.replace(line, ".o:", "$(OBJEXT):") - - if(previous): - line = previous + " " + line - - if(line[-1] == "\\"): - previous = line[:-2] - continue - else: - previous = "" - - for s in line.split(): - if(s[0] != "/"): - print s, - - print - |