diff options
author | Max Horn | 2009-12-26 01:37:09 +0000 |
---|---|---|
committer | Max Horn | 2009-12-26 01:37:09 +0000 |
commit | 4807dbdb28896bbebb49d785f777327c82db31a8 (patch) | |
tree | 9829f3caf9d894b601084a195a5951e3643482c4 /tools/skycpt | |
parent | ab2a5429f5c8e788d1a2ffa43c3b6128e1b5e68a (diff) | |
download | scummvm-rg350-4807dbdb28896bbebb49d785f777327c82db31a8.tar.gz scummvm-rg350-4807dbdb28896bbebb49d785f777327c82db31a8.tar.bz2 scummvm-rg350-4807dbdb28896bbebb49d785f777327c82db31a8.zip |
Remove obsolete skycpt Makefile
svn-id: r46572
Diffstat (limited to 'tools/skycpt')
-rw-r--r-- | tools/skycpt/Makefile | 18 |
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 $@ |