mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
b396a6c793
svn-id: r19415
18 lines
483 B
Makefile
18 lines
483 B
Makefile
# 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 $@
|