FF4 - Skeleton objects

Created skeleton objects for all new 1.8.0 code.
This commit is contained in:
Paul Beckingham
2009-05-16 15:45:31 -04:00
parent 6bef54cdae
commit 833fac3c13
24 changed files with 1235 additions and 0 deletions

23
src/rewrite/Makefile Normal file
View File

@@ -0,0 +1,23 @@
PROJECT = 1.8
CFLAGS = -I. -I../../library/include -Wall -pedantic -ggdb3 -fno-rtti -fstack-check
LFLAGS =
LIBS =
OBJECTS = main.o Context.o TDB.o T.o Sequence.o Filter.o Att.o Date.o Duration.o Keymap.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)