Code Cleanup - reorg

- Renamed 'objects' to 'sandbox', for clarity.
This commit is contained in:
Paul Beckingham
2009-05-23 23:41:00 -04:00
parent 2aa2a4e257
commit 6600f9bac4
11 changed files with 0 additions and 0 deletions

25
src/sandbox/Makefile Normal file
View File

@@ -0,0 +1,25 @@
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 \
../Date.o ../Config.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)