Added buffer class

This commit is contained in:
Pierre Pronchery 2006-01-10 15:54:50 +00:00
parent 6994869548
commit a90762d7b9
5 changed files with 9 additions and 3 deletions

View File

@ -24,6 +24,7 @@ dist:
$(PACKAGE)-$(VERSION)/include/appclient.h \ $(PACKAGE)-$(VERSION)/include/appclient.h \
$(PACKAGE)-$(VERSION)/include/appserver.h \ $(PACKAGE)-$(VERSION)/include/appserver.h \
$(PACKAGE)-$(VERSION)/include/array.h \ $(PACKAGE)-$(VERSION)/include/array.h \
$(PACKAGE)-$(VERSION)/include/buffer.h \
$(PACKAGE)-$(VERSION)/include/config.h \ $(PACKAGE)-$(VERSION)/include/config.h \
$(PACKAGE)-$(VERSION)/include/event.h \ $(PACKAGE)-$(VERSION)/include/event.h \
$(PACKAGE)-$(VERSION)/include/hash.h \ $(PACKAGE)-$(VERSION)/include/hash.h \
@ -34,6 +35,7 @@ dist:
$(PACKAGE)-$(VERSION)/src/appinterface.c \ $(PACKAGE)-$(VERSION)/src/appinterface.c \
$(PACKAGE)-$(VERSION)/src/appserver.c \ $(PACKAGE)-$(VERSION)/src/appserver.c \
$(PACKAGE)-$(VERSION)/src/array.c \ $(PACKAGE)-$(VERSION)/src/array.c \
$(PACKAGE)-$(VERSION)/src/buffer.c \
$(PACKAGE)-$(VERSION)/src/config.c \ $(PACKAGE)-$(VERSION)/src/config.c \
$(PACKAGE)-$(VERSION)/src/event.c \ $(PACKAGE)-$(VERSION)/src/event.c \
$(PACKAGE)-$(VERSION)/src/hash.c \ $(PACKAGE)-$(VERSION)/src/hash.c \

View File

@ -8,6 +8,7 @@
# include <appclient.h> # include <appclient.h>
# include <appserver.h> # include <appserver.h>
# include <buffer.h>
# include <config.h> # include <config.h>
# include <event.h> # include <event.h>
# include <string.h> # include <string.h>

View File

@ -1 +1 @@
dist=System.h,appclient.h,appserver.h,array.h,config.h,event.h,hash.h,string.h dist=System.h,appclient.h,appserver.h,array.h,buffer.h,config.h,event.h,hash.h,string.h

View File

@ -15,7 +15,7 @@ INSTALL = install
all: $(TARGETS) all: $(TARGETS)
libSystem_OBJS = appclient.o appinterface.o appserver.o array.o config.o event.o hash.o string.o libSystem_OBJS = appclient.o appinterface.o appserver.o array.o buffer.o config.o event.o hash.o string.o
libSystem_CFLAGS = $(CFLAGSF) $(CFLAGS) libSystem_CFLAGS = $(CFLAGSF) $(CFLAGS)
libSystem.a: $(libSystem_OBJS) libSystem.a: $(libSystem_OBJS)
$(AR) libSystem.a $(libSystem_OBJS) $(AR) libSystem.a $(libSystem_OBJS)
@ -35,6 +35,9 @@ appserver.o: appserver.c
array.o: array.c array.o: array.c
$(CC) $(libSystem_CFLAGS) -c array.c $(CC) $(libSystem_CFLAGS) -c array.c
buffer.o: buffer.c
$(CC) $(libSystem_CFLAGS) -c buffer.c
config.o: config.c config.o: config.c
$(CC) $(libSystem_CFLAGS) -c config.c $(CC) $(libSystem_CFLAGS) -c config.c

View File

@ -6,4 +6,4 @@ dist=appinterface.h
[libSystem] [libSystem]
type=library type=library
sources=appclient.c,appinterface.c,appserver.c,array.c,config.c,event.c,hash.c,string.c sources=appclient.c,appinterface.c,appserver.c,array.c,buffer.c,config.c,event.c,hash.c,string.c