aboutsummaryrefslogtreecommitdiff
path: root/tools/skycpt/Makefile
diff options
context:
space:
mode:
authorRobert Göffringmann2005-11-04 00:43:36 +0000
committerRobert Göffringmann2005-11-04 00:43:36 +0000
commitb396a6c7936679cc0c288b608e19b359a0cae5c7 (patch)
tree0b5c9a26e89e9cd7d3c7eb705c2be1e002c67e99 /tools/skycpt/Makefile
parentcbe5f667c203de9afc52b892eb19431322537884 (diff)
downloadscummvm-rg350-b396a6c7936679cc0c288b608e19b359a0cae5c7.tar.gz
scummvm-rg350-b396a6c7936679cc0c288b608e19b359a0cae5c7.tar.bz2
scummvm-rg350-b396a6c7936679cc0c288b608e19b359a0cae5c7.zip
Wrote a makefile and a readme
svn-id: r19415
Diffstat (limited to 'tools/skycpt/Makefile')
-rw-r--r--tools/skycpt/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/skycpt/Makefile b/tools/skycpt/Makefile
new file mode 100644
index 0000000000..bfa9937519
--- /dev/null
+++ b/tools/skycpt/Makefile
@@ -0,0 +1,18 @@
+# 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:
+ rm -f $(TARGET) $(OBJS)
+
+$(TARGET): $(OBJS)
+ $(CC) $(OBJS) $(LDFLAGS) -o $(TARGET)
+
+%.o: %.cpp
+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@ \ No newline at end of file