Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
CC=g++
CFLAGS=-c -Wall
all: TextEditor
TextEditor: ECEditorTest.o ECTextViewImp.o ECEditor.o ECCommand.o ECRow.o
$(CC) ECEditorTest.o ECTextViewImp.o ECEditor.o ECCommand.o ECRow.o -o Editor
ECEditorTest.o: ECEditorTest.cpp
$(CC) $(CFLAGS) ECEditorTest.cpp
ECTextViewImp.o: ECTextViewImp.cpp
$(CC) $(CFLAGS) ECTextViewImp.cpp
ECEditor.o: ECEditor.cpp
$(CC) $(CFLAGS) ECEditor.cpp
ECCommand.o: ECCommand.cpp
$(CC) $(CFLAGS) ECCommand.cpp
ECRow.o: ECRow.cpp
$(CC) $(CFLAGS) ECRow.cpp
clean:
rm -rf *o Editor