Added source file common.c

This commit is contained in:
Pierre Pronchery 2005-09-18 02:28:36 +00:00
parent e6d337970f
commit 13b1356904
2 changed files with 5 additions and 2 deletions

View File

@ -10,7 +10,7 @@ RM = rm -f
all: $(TARGETS)
libSystem_OBJS= appclient.o appserver.o array.o event.o string.o
libSystem_OBJS= appclient.o appserver.o array.o common.o event.o string.o
libSystem_CFLAGS=$(CFLAGSF) $(CFLAGS)
libSystem.a: $(libSystem_OBJS)
$(AR) libSystem.a $(libSystem_OBJS)
@ -28,6 +28,9 @@ appserver.o: appserver.c
array.o: array.c
$(CC) $(libSystem_CFLAGS) -c array.c
common.o: common.c
$(CC) $(libSystem_CFLAGS) -c common.c
event.o: event.c
$(CC) $(libSystem_CFLAGS) -c event.c

View File

@ -5,4 +5,4 @@ cflags=-g
[libSystem]
type=library
sources=appclient.c,appserver.c,array.c,event.c,string.c
sources=appclient.c,appserver.c,array.c,common.c,event.c,string.c