diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2008-04-01 01:37:51 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-04-01 01:37:51 +0000 |
commit | 0bbbd488965a6d29f79075cb8c3ffde18a369a9a (patch) | |
tree | 097dab7d38667d93691eee67cf9fe6a6fec34e16 | |
parent | 67ae268b0a4411d6b00b07a3ee2b0104fdb98925 (diff) | |
download | mana-0bbbd488965a6d29f79075cb8c3ffde18a369a9a.tar.gz mana-0bbbd488965a6d29f79075cb8c3ffde18a369a9a.tar.bz2 mana-0bbbd488965a6d29f79075cb8c3ffde18a369a9a.tar.xz mana-0bbbd488965a6d29f79075cb8c3ffde18a369a9a.zip |
renaming makefile to Makefile
-rw-r--r-- | tools/tmxcopy/makefile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/tmxcopy/makefile b/tools/tmxcopy/makefile deleted file mode 100644 index 732dec36..00000000 --- a/tools/tmxcopy/makefile +++ /dev/null @@ -1,18 +0,0 @@ -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
|