diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-11-24 09:37:22 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-11-24 09:37:22 +0100 |
commit | 98c58bb9d3d39e4edbff05387b905a6c0fffa85d (patch) | |
tree | 0e7f023b2e5dd15d53706dfcdd7b17bc8122f3b2 /tools | |
parent | 5523ebb7850d99ecf750009b853dad6cb914e9e5 (diff) | |
download | mana-98c58bb9d3d39e4edbff05387b905a6c0fffa85d.tar.gz mana-98c58bb9d3d39e4edbff05387b905a6c0fffa85d.tar.bz2 mana-98c58bb9d3d39e4edbff05387b905a6c0fffa85d.tar.xz mana-98c58bb9d3d39e4edbff05387b905a6c0fffa85d.zip |
Converted some DOS newlines to UNIX
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dyecmd/README | 24 | ||||
-rw-r--r-- | tools/tmxcopy/Makefile | 36 |
2 files changed, 30 insertions, 30 deletions
diff --git a/tools/dyecmd/README b/tools/dyecmd/README index 0c1a9aba..c2981bb0 100644 --- a/tools/dyecmd/README +++ b/tools/dyecmd/README @@ -1,12 +1,12 @@ -DYECMD
-=======
-
-This tool is used to dye item graphics used by the tmw client according to the
-specification described here: http://wiki.themanaworld.org/index.php/Image_dyeing
-
-The tool expects 3 parameters:
-
-dyecmd <source_image> <target_image> <dye_string>
-e.g.:
-dyecmd "armor-legs-shorts.png" "armor-legs-shorts2.png" "W:#222255,6666ff"
-
+DYECMD +======= + +This tool is used to dye item graphics used by the tmw client according to the +specification described here: http://wiki.themanaworld.org/index.php/Image_dyeing + +The tool expects 3 parameters: + +dyecmd <source_image> <target_image> <dye_string> +e.g.: +dyecmd "armor-legs-shorts.png" "armor-legs-shorts2.png" "W:#222255,6666ff" + diff --git a/tools/tmxcopy/Makefile b/tools/tmxcopy/Makefile index 732dec36..84aa9fc6 100644 --- a/tools/tmxcopy/Makefile +++ b/tools/tmxcopy/Makefile @@ -1,18 +1,18 @@ -CC=g++
-CFLAGS=-c `pkg-config --cflags libxml-2.0`
-LDFLAGS=`pkg-config --libs libxml-2.0`
-SOURCES=base64.cpp main.cpp map.cpp xmlutils.cpp zlibutils.cpp
-OBJECTS=$(SOURCES:.cpp=.o)
-EXECUTABLE=tmxcopy
-
-all: $(SOURCES) $(EXECUTABLE)
- make clean
-
-$(EXECUTABLE): $(OBJECTS)
- $(CC) $(LDFLAGS) $(OBJECTS) -o $@
-
-.cpp.o:
- $(CC) $(CFLAGS) $< -o $@
-
-clean:
- rm -f *.o
+CC=g++ +CFLAGS=-c `pkg-config --cflags libxml-2.0` +LDFLAGS=`pkg-config --libs libxml-2.0` +SOURCES=base64.cpp main.cpp map.cpp xmlutils.cpp zlibutils.cpp +OBJECTS=$(SOURCES:.cpp=.o) +EXECUTABLE=tmxcopy + +all: $(SOURCES) $(EXECUTABLE) + make clean + +$(EXECUTABLE): $(OBJECTS) + $(CC) $(LDFLAGS) $(OBJECTS) -o $@ + +.cpp.o: + $(CC) $(CFLAGS) $< -o $@ + +clean: + rm -f *.o |