Added buffer class
This commit is contained in:
parent
6994869548
commit
a90762d7b9
2
Makefile
2
Makefile
|
@ -24,6 +24,7 @@ dist:
|
|||
$(PACKAGE)-$(VERSION)/include/appclient.h \
|
||||
$(PACKAGE)-$(VERSION)/include/appserver.h \
|
||||
$(PACKAGE)-$(VERSION)/include/array.h \
|
||||
$(PACKAGE)-$(VERSION)/include/buffer.h \
|
||||
$(PACKAGE)-$(VERSION)/include/config.h \
|
||||
$(PACKAGE)-$(VERSION)/include/event.h \
|
||||
$(PACKAGE)-$(VERSION)/include/hash.h \
|
||||
|
@ -34,6 +35,7 @@ dist:
|
|||
$(PACKAGE)-$(VERSION)/src/appinterface.c \
|
||||
$(PACKAGE)-$(VERSION)/src/appserver.c \
|
||||
$(PACKAGE)-$(VERSION)/src/array.c \
|
||||
$(PACKAGE)-$(VERSION)/src/buffer.c \
|
||||
$(PACKAGE)-$(VERSION)/src/config.c \
|
||||
$(PACKAGE)-$(VERSION)/src/event.c \
|
||||
$(PACKAGE)-$(VERSION)/src/hash.c \
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
# include <appclient.h>
|
||||
# include <appserver.h>
|
||||
# include <buffer.h>
|
||||
# include <config.h>
|
||||
# include <event.h>
|
||||
# include <string.h>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -15,7 +15,7 @@ INSTALL = install
|
|||
|
||||
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.a: $(libSystem_OBJS)
|
||||
$(AR) libSystem.a $(libSystem_OBJS)
|
||||
|
@ -35,6 +35,9 @@ appserver.o: appserver.c
|
|||
array.o: array.c
|
||||
$(CC) $(libSystem_CFLAGS) -c array.c
|
||||
|
||||
buffer.o: buffer.c
|
||||
$(CC) $(libSystem_CFLAGS) -c buffer.c
|
||||
|
||||
config.o: config.c
|
||||
$(CC) $(libSystem_CFLAGS) -c config.c
|
||||
|
||||
|
|
|
@ -6,4 +6,4 @@ dist=appinterface.h
|
|||
|
||||
[libSystem]
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue
Block a user