0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-28 07:59:02 +01:00
mongodb/db/makefile

24 lines
656 B
Makefile
Raw Normal View History

2007-10-20 01:35:48 +02:00
# makefile for our db project
2007-10-29 04:04:25 +01:00
FLAGS=-I .. -I/opt/java/include/ -I/opt/java/include/linux -Isrc/p -I/src/p/db -I/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Headers/
2007-10-20 01:35:48 +02:00
2007-10-29 01:43:04 +01:00
OBJS=../stdafx.o ../util/sock.o ../grid/message.o ../util/mmap.o pdfile.o query.o jsobj.o
2007-10-20 01:35:48 +02:00
.cpp.o:
g++ -c $(FLAGS) $< -o $@
# Our convention is that passing 'quicktest' on the command line means run
# fast regressions and then immediately exit. That way you know immediately if you
# broke something horribly.
db: $(OBJS) db.o
g++ $(FLAGS) -o $@ $(OBJS) db.o
./db quicktest
clean:
-rm -f $(OBJS) db.o
-rm -f db
2007-10-30 16:35:17 +01:00
cleandb:
rm /data/namespace.idx /data/temp.dat