aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 $@