FF4 - Renamed directory to 'objects'

- Better name for new object directory.
This commit is contained in:
Paul Beckingham 2009-05-23 09:42:52 -04:00
parent a9d46a0714
commit dd8b181081
15 changed files with 0 additions and 25 deletions

View file

@ -1,25 +0,0 @@
PROJECT = 1.8
CFLAGS = -I. -I.. -Wall -pedantic -ggdb3 -fno-rtti -fstack-check
LFLAGS =
LIBS =
OBJECTS = main.o Context.o TDB.o T.o Sequence.o Filter.o Att.o Keymap.o \
Record.o Mod.o StringTable.o ../util.o ../text.o ../Config.o \
../Date.o
all: $(PROJECT)
install: $(PROJECT)
@echo unimplemented
test: $(PROJECT)
@echo unimplemented
clean:
-rm *.o $(PROJECT)
.cpp.o: $(INCLUDE)
g++ -c $(CFLAGS) $<
$(PROJECT): $(OBJECTS)
g++ $(OBJECTS) $(LFLAGS) $(LIBS) -o $(PROJECT)