Code Cleanup - reorg
- Renamed 'objects' to 'sandbox', for clarity.
This commit is contained in:
25
src/sandbox/Makefile
Normal file
25
src/sandbox/Makefile
Normal 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)
|
||||
|
||||
Reference in New Issue
Block a user