Created V0.3.x branch and moved the head into the trunk directory.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@246 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2007-11-15 03:18:48 +00:00
commit 935745a08e
1318 changed files with 348809 additions and 0 deletions

View file

@ -0,0 +1,31 @@
RS_TOP_DIR = ..
include ../make.opt
OBJ = pqistrings.o \
p3face-people.o p3face-file.o \
p3face-msgs.o p3face-server.o \
p3face-config.o \
p3face-network.o \
p3face-startup.o \
rstypes.o \
rsiface.o \
TESTS =
all : $(OBJ) librs $(TESTS)
librs: $(OBJ)
$(AR) r $(LIBRS) $(OBJ)
$(RANLIB) $(LIBRS)
.cc.o:
$(CC) $(CFLAGS) -c $<
clean:
-/bin/rm $(OBJ)
clobber: clean