Added source file common.c
This commit is contained in:
parent
e6d337970f
commit
13b1356904
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user