aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2009-12-26 01:37:09 +0000
committerMax Horn2009-12-26 01:37:09 +0000
commit4807dbdb28896bbebb49d785f777327c82db31a8 (patch)
tree9829f3caf9d894b601084a195a5951e3643482c4
parentab2a5429f5c8e788d1a2ffa43c3b6128e1b5e68a (diff)
downloadscummvm-rg350-4807dbdb28896bbebb49d785f777327c82db31a8.tar.gz
scummvm-rg350-4807dbdb28896bbebb49d785f777327c82db31a8.tar.bz2
scummvm-rg350-4807dbdb28896bbebb49d785f777327c82db31a8.zip
Remove obsolete skycpt Makefile
svn-id: r46572
-rw-r--r--tools/skycpt/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/skycpt/Makefile b/tools/skycpt/Makefile
deleted file mode 100644
index b907e6782d..0000000000
--- a/tools/skycpt/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# This worked for me
-# Sorry if it doesn't work for you, but I don't know how to write Makefiles.
-# After all, I'm only a windows user.
-# I would've liked to test it on linux, but I couldn't find the Start button.
-
-TARGET=TXT2CPT
-OBJS=AsciiCptCompile.o cptcompiler.o cpthelp.o idFinder.o KmpSearch.o stdafx.o TextFile.o
-
-all: $(TARGET)
-
-clean:
- $(QUIET)$(RM) $(TARGET) $(OBJS)
-
-$(TARGET): $(OBJS)
- $(QUIET_CXX)$(CXX) $(OBJS) $(LDFLAGS) -o $(TARGET)
-
-%.o: %.cpp
- $(QUIET_CXX)$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@